1.#:id 选择器
#red
{color:red;}#green
{color:green;}
<p id="red">这个段落是红色。</p> <p id="green">这个段落是绿色。</p>
2.点号:类选择器
.center
{text-align: center}
<h1 class="center"> This heading will be center-aligned </h1> <p class="center"> This paragraph will also be center-aligned. </p>
3.[] 属性选择器
[title]
(包含title属性)
{ color:red; }
[title=W3School]
{
border:5px solid blue;
}