1.css的优势:
--内容与表现分离
--网页结构统一,可以实现复用
--样式丰富
2.css的3种导入方式
2.1行内样式
<h1 style="color: red">标题</h1>
2.2style标签:内部样式
<style>
h1{
color: red;
}
</style>
2.3外部样式(css文件中)
h1{
color: red;
}
2.4优先级
就近原则(谁离代码更近)
3. 3种选择器
3.1标签选择器
h1{ color:red; }
3.2class选择器
.class名{
clolr:red;
}
3.3id选择器
#id名{
color:red;
}