1.2 id 和 class 选择器

CSS 选择器非常多,id 和 class 较为常用;
更多选择器,查看参考手册;

id 选择器

  • 在一个页面只能使用一次;
#test-p {
    color: red;
}

<p id="test-p">test p</p>

class 选择器

  • 可以被多次使用;
.test-p {
    color: green;
}

<p class="test-p">test p</p>
<p class="test-p">test p</p>