html5、css 选择器
li{
color:red;
}
/*标签选择器*/
#xiaoMing{
color: green;
}
/*id选择器,且不重复*/
.xiaoHong{
color: blue !important;
}
/*Class类名选择器*/
/*css优先级 1后来者居上2行内样式>头部>=外部3越精确越说了算id>class4 !important优先级最最高,不到最迫不得已的时候不要用*/
li{
color:red;
}
/*标签选择器*/
#xiaoMing{
color: green;
}
/*id选择器,且不重复*/
.xiaoHong{
color: blue !important;
}
/*Class类名选择器*/
/*css优先级 1后来者居上2行内样式>头部>=外部3越精确越说了算id>class4 !important优先级最最高,不到最迫不得已的时候不要用*/