CSS :after 选择器 详解
css3基础 2023-07-22 16:34:29小码哥的IT人生shichen
CSS :after 选择器
实例
在每个 <p> 元素的内容之后插入新内容:
p:after
{
content:"台词:";
}
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
p:after
{
content:"- 台词";
}
</style>
</head>
<body>
<p>我是唐老鸭。</p>
<p>我住在 Duckburg。</p>
<p><b>注释:</b>对于在 IE8 中工作的 :after,必须声明 DOCTYPE。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
选择器 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
::after | 4.0 | 9.0 | 3.5 | 3.1 | 7.0 |
注释:对于 IE8 及更早版本中的 :after,必须声明 <!DOCTYPE>。
定义和用法
:after 选择器在被选元素的内容后面插入内容。
请使用 content 属性来指定要插入的内容。
更多实例
在每个 <p> 元素后面插入内容,并设置所插入内容的样式:
p:after
{
content:"台词:-";
background-color:yellow;
color:red;
font-weight:bold;
}
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<head>
<style>
p:after
{
content:"- 台词";
background-color:yellow;
color:red;
font-weight:bold;
}
</style>
</head>
<body>
<p>我是唐老鸭。</p>
<p>我住在 Duckburg。</p>
<p><b>注释:</b>对于在 IE8 中工作的 :after,必须声明 DOCTYPE。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html