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.
实际上,我想知道两者之间的区别:
#content{some CSS rules}
和
div#content{some CSS rules}
第一个选择任何具有 ID 的元素content。
content
第二个选择任何div具有 ID 的元素content。
div
MDN:编写高效的 CSS - 样式系统如何匹配规则