CSS :before 选择器
CSS :before 选择器向选定的元素前插入内容
使用 content 属性来指定要插入的内容
浏览器支持
下表中的数字表示支持该属性的第一个浏览器版本号
4.0 | 9.0 部分从8.0 |
3.5 | 3.1 | 7.0 部分从 4.0 |
:before
在 IE8 中运行,必须声明 <!DOCTYPE>
范例
每个 <p> 元素之前插入内容
p:before { content:"Read this: "; }
范例 2
在每个 <p> 之前插入的内容和样式
p:before { content:"Read this -"; background-color:yellow; color:red; font-weight:bold; }
相关文章
- CSS 基础教程 CSS 伪类
- CSS 选择器参考手册 CSS :after 选择器