CSS 伪类 (Pseudo-classes)

CSS 伪类用于向某些选择器添加特殊的效果。

CSS 伪类 (Pseudo-classes)实例:

  • 超链接

    本例演示如何向文档中的超链接添加不同的颜色。

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. a:link {color: #FF0000}
  5. a:visited {color: #00FF00}
  6. a:hover {color: #FF00FF}
  7. a:active {color: #0000FF}
  8. </style>
  9. </head>
  10. <body>
  11. <p><b><a href="/index.html" target="_blank">这是一个链接。</a></b></p>
  12. <p><b>注释:</b>在 CSS 定义中,a:hover 必须位于 a:link 和 a:visited 之后,这样才能生效!</p>
  13. <p><b>注释:</b>在 CSS 定义中,a:active 必须位于 a:hover 之后,这样才能生效!</p>
  14. </body>
  15. </html>
  • 超链接 2

    本例演示如何向超链接添加其他样式。

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. a.one:link {color: #ff0000}
  5. a.one:visited {color: #0000ff}
  6. a.one:hover {color: #ffcc00}
  7. a.two:link {color: #ff0000}
  8. a.two:visited {color: #0000ff}
  9. a.two:hover {font-size: 150%}
  10. a.three:link {color: #ff0000}
  11. a.three:visited {color: #0000ff}
  12. a.three:hover {background: #66ff66}
  13. a.four:link {color: #ff0000}
  14. a.four:visited {color: #0000ff}
  15. a.four:hover {font-family: monospace}
  16. a.five:link {color: #ff0000; text-decoration: none}
  17. a.five:visited {color: #0000ff; text-decoration: none}
  18. a.five:hover {text-decoration: underline}
  19. </style>
  20. </head>
  21. <body>
  22. <p>请把鼠标移动到这些链接上,以查看效果:</p>
  23. <p><b><a class="one" href="/index.html" target="_blank">这个链接改变颜色</a></b></p>
  24. <p><b><a class="two" href="/index.html" target="_blank">这个链接改变字体大小</a></b></p>
  25. <p><b><a class="three" href="/index.html" target="_blank">这个链接改变背景颜色</a></b></p>
  26. <p><b><a class="four" href="/index.html" target="_blank">这个链接改变字体系列</a></b></p>
  27. <p><b><a class="five" href="/index.html" target="_blank">这个链接改变文本装饰</a></b></p>
  28. </body>
  29. </html>
  • 超链接 - :focus 的使用

    本例演示如何对超链接应用 :focus 伪类(无法在 IE 中工作)。

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. input:focus
  6. {
  7. background-color:yellow;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <form action="form_action.md" method="get">
  13. First name: <input type="text" name="fname" /><br />
  14. Last name: <input type="text" name="lname" /><br />
  15. <input type="submit" value="Submit" />
  16. </form>
  17. <p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 :focus 伪类。</p>
  18. </body>
  19. </html>
  • :first-child(首个子对象)

    本例演示 :first-child 伪类的用法。

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. p:first-child {font-weight: bold;}
  6. li:first-child {text-transform:uppercase;}
  7. </style>
  8. </head>
  9. <body>
  10. <div>
  11. <p>These are the necessary steps:</p>
  12. <ul>
  13. <li>Intert Key</li>
  14. <li>Turn key <strong>clockwise</strong></li>
  15. <li>Push accelerator</li>
  16. </ul>
  17. <p>Do <em>not</em> push the brake at the same time as the accelerator.</p>
  18. </div>
  19. <p><b>注释:</b>必须声明 DOCTYPE,这样 :first-child 才能在 IE 中生效。</p>
  20. </body>
  21. </html>
  • :lang(语言)

    本例演示 :lang 伪类的用法。

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. q:lang(no)
  5. {
  6. quotes: "~" "~"
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <p>:lang 伪类允许您为不同的语言定义特殊的规则。在下面的例子中,在下面的例子中,:lang 类为带有值为 "no" 的 lang 属性的 q 元素定义引号的类型:</p>
  12. <p>一些文本 <q lang="no">段落中的引用</q> 一些文本。</p>
  13. </body>
  14. </html>

语法

伪类的语法:

  1. selector : pseudo-class {property: value}

CSS 类也可与伪类搭配使用。

  1. selector.class : pseudo-class {property: value}

锚伪类

在支持 CSS 的浏览器中,链接的不同状态都可以不同的方式显示,这些状态包括:活动状态,已被访问状态,未被访问状态,和鼠标悬停状态。

  1. a:link {color: #FF0000} /* 未访问的链接 */
  2. a:visited {color: #00FF00} /* 已访问的链接 */
  3. a:hover {color: #FF00FF} /* 鼠标移动到链接上 */
  4. a:active {color: #0000FF} /* 选定的链接 */

提示:在 CSS 定义中,a:hover 必须被置于 a:link 和 a:visited 之后,才是有效的。

提示:在 CSS 定义中,a:active 必须被置于 a:hover 之后,才是有效的。

提示:伪类名称对大小写不敏感。

伪类与 CSS 类

伪类可以与 CSS 类配合使用:

  1. a.red : visited {color: #FF0000}
  2.  
  3. <a class="red" href="css_syntax.md">CSS Syntax</a>

假如上面的例子中的链接被访问过,那么它将显示为红色。

CSS2 - :first-child 伪类

您可以使用 :first-child 伪类来选择元素的第一个子元素。这个特定伪类很容易遭到误解,所以有必要举例来说明。考虑以下标记:

  1. <div>
  2. <p>These are the necessary steps:</p>
  3. <ul>
  4. <li>Intert Key</li>
  5. <li>Turn key <strong>clockwise</strong></li>
  6. <li>Push accelerator</li>
  7. </ul>
  8. <p>Do <em>not</em> push the brake at the same time as the accelerator.</p>
  9. </div>

在上面的例子中,作为第一个元素的元素包括第一个 p、第一个 li 和 strong 和 em 元素。

给定以下规则:

  1. p:first-child {font-weight: bold;}
  2. li:first-child {text-transform:uppercase;}

第一个规则将作为某元素第一个子元素的所有 p 元素设置为粗体。第二个规则将作为某个元素(在 HTML 中,这肯定是 ol 或 ul 元素)第一个子元素的所有 li 元素变成大写。

请访问该链接,来查看这个 :first-child 实例 的效果。

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. p:first-child {font-weight: bold;}
  6. li:first-child {text-transform:uppercase;}
  7. </style>
  8. </head>
  9. <body>
  10. <div>
  11. <p>These are the necessary steps:</p>
  12. <ul>
  13. <li>Intert Key</li>
  14. <li>Turn key <strong>clockwise</strong></li>
  15. <li>Push accelerator</li>
  16. </ul>
  17. <p>Do <em>not</em> push the brake at the same time as the accelerator.</p>
  18. </div>
  19. <p><b>注释:</b>必须声明 DOCTYPE,这样 :first-child 才能在 IE 中生效。</p>
  20. </body>
  21. </html>

提示:最常见的错误是认为 p:first-child 之类的选择器会选择 p 元素的第一个子元素。

注释:必须声明 <!DOCTYPE>,这样 :first-child 才能在 IE 中生效。

为了使您更透彻地理解 :first-child 伪类,我们另外提供了 3 个例子:

例子 1 - 匹配第一个 <p> 元素

在下面的例子中,选择器匹配作为任何元素的第一个子元素的 p 元素:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. p:first-child {
  5. color: red;
  6. }
  7. </style>
  8. </head>
  9.  
  10. <body>
  11. <p>some text</p>
  12. <p>some text</p>
  13. </body>
  14. </html>

例子 2 - 匹配所有 <p> 元素中的第一个 <i> 元素

在下面的例子中,选择器匹配所有 <p> 元素中的第一个 <i> 元素:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. p > i:first-child {
  5. font-weight:bold;
  6. }
  7. </style>
  8. </head>
  9.  
  10. <body>
  11. <p>some <i>text</i>. some <i>text</i>.</p>
  12. <p>some <i>text</i>. some <i>text</i>.</p>
  13. </body>
  14. </html>

例子 3 - 匹配所有作为第一个子元素的 <p> 元素中的所有 <i> 元素

在下面的例子中,选择器匹配所有作为元素的第一个子元素的 <p> 元素中的所有 <i> 元素:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. p:first-child i {
  5. color:blue;
  6. }
  7. </style>
  8. </head>
  9.  
  10. <body>
  11. <p>some <i>text</i>. some <i>text</i>.</p>
  12. <p>some <i>text</i>. some <i>text</i>.</p>
  13. </body>
  14. </html>

CSS2 - :lang 伪类

:lang 伪类使你有能力为不同的语言定义特殊的规则。在下面的例子中,:lang 类为属性值为 no 的 q 元素定义引号的类型:

  1. <html>
  2. <head>
  3.  
  4. <style type="text/css">
  5. q:lang(no)
  6. {
  7. quotes: "~" "~"
  8. }
  9. </style>
  10.  
  11. </head>
  12.  
  13. <body>
  14. <p>文字<q lang="no">段落中的引用的文字</q>文字</p>
  15. </body></html>

伪类

W3C:"W3C" 列指示出该属性在哪个 CSS 版本中定义(CSS1 还是 CSS2)。

属性 描述 CSS
:active 向被激活的元素添加样式。 1
:focus 向拥有键盘输入焦点的元素添加样式。 2
:hover 当鼠标悬浮在元素上方时,向元素添加样式。 1
:link 向未被访问的链接添加样式。 1
:visited 向已被访问的链接添加样式。 1
:first-child 向元素的第一个子元素添加样式。 2
:lang 向带有指定 lang 属性的元素添加样式。 2