前端之家收集整理的这篇文章主要介绍了
html – 理解CSS选择器,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么下面的
文字是红色的?
#stories li a {color:red}
.default li.expand a {color:green}
li.expand a {color:blue}
<ul id="stories" class="default">
<li>this is the end</li>
<li class="expand">this is the end</li>
只有当我把#stories放在其他文件上时,文本才会改变. #是否有更多的优势,即使它在css上更进一步?!
原文链接:https://www.f2er.com/html/232360.html