Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这些选择器之间有什么区别吗?
div.demo和div .demo
div.demo
div .demo
div#demo和div #demo
div#demo
div #demo
它是否选择相同的元素?
div.demo{some code} div .demo{some code}
就在这里。
div.demo将匹配一个div与类demo
div
demo
<div class="demo">
div .demo将任何与类demo内的任何东西div:
<div> <span class="demo"> </div>
与 id 选择器相同#。
#
将div与班级一起选择,demo而
将选择a with class的任何后代。第二种情况的概念相同。divdemo