CSS :after 选择器

CSS完整选择器完整CSS选择器参考手册

每个<p>元素之后插入内容:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    p:after {
      content: "- 注意我";
    }
  </style>
</head>

<body>
  <p>我的名字是 Donald</p>
  <p>我住在 Ducksburg</p>

  <p><b>注意:</b> :after在IE8中运行,必须声明 !DOCTYPE </p>

</body>
</html>

尝试一下 »


定义和说明

:after 选择器向选定的元素之后插入内容。

使用content 属性来指定要插入的内容。


浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

选择器
::after 4.0 9.0
部分从 8.0
3.5 3.1 7.0
部分从4.0

注意: after在IE8中运行,必须声明<!DOCTYPE> .


相关文章

CSS 教程: CSS Pseudo-elements

CSS 选择器参考手册: CSS :before 选择器


更多实例


在每个 <p>之后插入的内容和样式:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    p:after {
      content: "- Remember this";
      background-color: yellow;
      color: red;
      font-weight: bold;
    }
  </style>
</head>

<body>
  <p>My name is Donald</p>
  <p>I live in Ducksburg</p>

  <p><b>注意:</b>:after作用于IE8 以及更早版本的浏览器,DOCTYPE 必须已经声明.</p>

</body>
</html>

尝试一下 »