Cascading Stytle Sheets 层叠样式表
1、优势
1.内容和表现分离
2.网页结构表现统一,可以复用
3.样式丰富
4.建议使用独立于html的css文件
5.利于SEO,容易被搜索引擎收录
2、语法
p {
color:red;
text-align:center;
}
3、三种导入方式
优先级
1.行内样式
2.外部css样式 link
3.
4、选择器
优先级
分类
基本选择器
标签选择器
p {
color:red;
text-align:center;
}
类选择器 class 可以复用
class任意名字都可以
.regist_btn{
color:red;
}
id选择器 id唯一
#id1{
color:red;
}
#id2{
color:green;
}#id3{
color:yello;
}#id4{
color:black;
}
层次选择器
后代选择器
在某个标签后面 爷爷-爸爸-儿子
body p{
background:red;
}
子选择器
只有一代
body>p{
background:red;
}