时间:2021-07-01 10:21:17 帮助过:2人阅读
id是唯一的.前面的div可以不写,但写了也不会出错.有时为了代码的可读性还是建议写上
div#box {
color: red;
}
==>
满足这个选择器的元素:
1. DIV元素
2. ID为"box"
当然,如果还有一个选择器为 #box { color: blue; }
div#box { color: red; } 的权重(优先级)比 #box { color: blue; }
则最终 div 的内容颜色为 "red"
谢谢两位,明白了!