css选择器

来源:互联网 发布:新红楼梦 知乎 编辑:程序博客网 时间:2024/06/16 12:29
  • 派生选择器
li strong {    color: red;}<p>i am<strong>strong</strong>.</p><li>i am<strong>red</strong>.</li>
  • id选择器
#red {    color: red;}#green {    color: green;}<p id="red">red</p><p id="green">green</p>

id属性只能在每个html文档中出现一次。

  • 类选择器
.header {    color: red;}<div>i am black.</div><div class="header">i am red.</div>
  • 属性选择器
a[title="search"] {    color: red;}<a href="baidu.com">black</a><a href="google.com" title="search">red</a>