CSS
1.引入CSS样式的三种方式
行内式
<标记名 style="属性1:属性值1; 属性2:属性值2; 属性3:属性值3;"> 内容 </标记名>
text-indent:2em;首行缩进2个字符
<h2 style="font-size: 30px;color: red;font-family: '华文行楷';text-align: center;">
内嵌式
text-decoration: overline; none underline line-through
<style type="text/css">
h2{color:green;
text-align: center;
font-family: "黑体";
text-decoration: overline;}
p{color:blue;
text-indent: 2em;}
</style>
链入式
<link href="css/css3.css" type="text/css" rel="stylesheet" />
letter-spacing: 20px;字间距
word-spacing:
2.CSS基础选择器
标签选择器
类选择器
id选择器