基本选择器
1.属性选择器
h3[title=’balloon’]{
color:pink;
}
2.标签选择器
h4{
color:cyan;
}
3.群组选择器
h4#Huang,h4.toy{
color:purple;
}
上下文选择器
子集元素
.list>.item{
font-size:1px;
}
后代元素
.list .item{
font-size:1px;
}
#
相邻兄弟选择器
.list>.item.rose + *{
background-color:mint-green;
}
所有兄弟选择器
.list>.item.rose ~ *{
background-color:crimson;
}
选择器权重
(百,十,个)-> id,class,tag
0,2,0 > 0,1,0 > 0,0,2