CSS ::before 选择器
下面有更多实例。
定义和用法
::before
选择器在被选元素的内容前面插入内容。
请使用 content 属性来指定要插入的内容。
请使用 ::after 选择器在内容后面插入内容。
版本: | CSS2 |
---|
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
选择器 | |||||
---|---|---|---|---|---|
::before | 4.0 | 9.0 | 3.5 | 3.1 | 7.0 |
语法
::before {
css declarations;
}
css declarations;
}
更多实例
实例
在每个 <p> 元素前面插入内容,并设置所插入内容的样式:
p::before
{
content: "Read this -";
background-color: yellow;
color: red;
font-weight: bold;
}
亲自试一试 »
content: "Read this -";
background-color: yellow;
color: red;
font-weight: bold;
}
相关页面
CSS 教程: CSS 伪元素
CSS 选择器参考手册: CSS ::after 选择器