更多"Try it Yourself"下面的例子。
定义和用法
内容属性是用来与:before和:after伪元素,插入生成的内容。
默认值: | normal |
---|---|
遗传: | no |
动画: | no. Read about animatable |
版: | CSS2 |
JavaScript语法: | You can't give an element a pseudo-class by using JavaScript, but there are other ways to get the same result: Try it |
浏览器支持
在表中的数字规定,完全支持该属性的第一个浏览器版本。
属性 | |||||
---|---|---|---|---|---|
content | 1.0 | 8 | 1.0 | 1.0 | 4 |
Note: IE8只支持内容属性如果指定了DOCTYPE的!
CSS语法
content: normal|none|counter|attr|string|open-quote|close-quote|no-open-quote|no-close-quote|url|initial|inherit;
属性值
值 | 描述 | 例 |
---|---|---|
normal | 默认值。 设置的内容,如果指定的,正常的,它默认为"none" (which is nothing) | Try it » |
none | 设置的内容,如果指定,不了了之 | Try it » |
counter | 设置内容为计数器 | Try it » |
attr (attribute) | 设置内容为一体的selector's属性 | Try it » |
string | 设置内容到您指定的文字 | Try it » |
open-quote | 设置内容是一个开引号 | Try it » |
close-quote | 设置内容是收盘报价 | Try it » |
no-open-quote | 从内容中删除开盘报价,如果指定 | Try it » |
no-close-quote | 从内容中删除收盘报价,如果指定 | Try it » |
url( url ) | 设置内容是某种类型的媒体(an image, a sound, a video, etc.) | Try it » |
initial | 将此属性设置为默认值。 阅读关于初始 | |
inherit | 继承其父元素此属性。 阅读关于继承 |
更多示例
例
如何添加项目符号的颜色<ul>或<ol>通过删除其默认子弹和补充,看起来像子弹HTML实体(•) :
ul {
list-style: none; /* Remove list bullets */
padding: 0;
margin: 0;
}
li {
padding-left: 16px;
}
li:before {
content: "•"; /* Insert content that
looks like bullets */
padding-right: 8px;
color: blue; /* Or a color you prefer */
}
试一试» 相关页面
CSS参考: :before伪元素
CSS参考: :伪元素之后