CSS content 属性 详解
css3基础 2022-07-14 16:04:32小码哥的IT人生shichen
CSS content 属性
定义和用法
content 属性与 :before 及 :after 伪元素配合使用,来插入生成内容。
说明
该属性用于定义元素之前或之后放置的生成内容。默认地,这往往是行内内容,不过该内容创建的框类型可以用属性 display 控制。
另请参阅:
CSS 参考手册:CSS :before 伪元素
CSS 参考手册:CSS :after 伪元素
HTML DOM 参考手册:content 属性
实例
下面的例子在每个链接后插入括号中的 URL:
a:after
{
content: " (" attr(href) ")";
}
完整实例【亲自试一试】:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
a:after
{content: " (" attr(href) ")"
}
</style>
</head>
<body>
<p><a href="http://www.phpcodeweb.com">phpcodeweb</a> contains free tutorials and references.</p>
<p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 content 属性。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
CSS 语法
content: normal|none|counter|attr|string|open-quote|close-quote|no-open-quote|no-close-quote|url|initial|inherit;
属性值
值 | 描述 |
---|---|
none | |
normal | |
content specifications | |
inherit | 规定应该从父元素继承 content 属性的值。 |
技术细节
默认值: | normal |
---|---|
继承性: | no |
版本: | CSS2 |
JavaScript 语法: | object.style.content="url(beep.wav)" |
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
Chrome | IE / Edge | Firefox | Safari | Opera |
---|---|---|---|---|
1.0 | 8.0 | 1.0 | 1.0 | 4.0 |