ID选择器允许您设置具有 ID 属性的HTML元素的样式,而不管它们在文档树中的位置如何。下面是一个ID选择器的示例
html
<div id="intro"> <p> 这是一行段落在intro.</p> </div> <p> 这行段落没有在intro里面.</p>
css
#intro { color: white; background-color: gray; }
结果
这是一行段落在intro.
这行段落没有在intro里面.
0