介绍
Cascading Style Sheets,CSS,层叠样式表。
注释:/**/
创建
1、内联样式
<p style="color:red;line-height=15px">这是一个段落</p>
2、内部样式表
<style>
p{color:red;line-height=15px}
<style>
3、外部样式表
<link rel="stylesheet" type="text/css" href="index.css"/>
选择器
1、id选择器
#p1
2、class选择器
.leftDiv
3、元素类型选择器
p
优先级:内联>id>class>元素类型