每个 <p>元素之前插入内容:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>基础教程(nhooo.com)</title> <style> p:before { content:"Read this -"; } </style> </head> <body> <p>我的名字叫萝莉</p> <p>我生活在海边</p> <p><b>注意:</b> :before 作用于 IE8,DOCTYPE 必须已经声明.</p> </body> </html>测试看看 ‹/›
:before 选择器向选定的元素前插入内容。
使用content 属性来指定要插入的内容。
表格中的数字表示支持该属性的第一个浏览器版本号。
选择器 | |||||
---|---|---|---|---|---|
::before | 4.0 | 9.0 部分从8.0 | 3.5 | 3.1 | 7.0 部分从 4.0 |
注意: before在IE8中运行,必须声明 <!DOCTYPE> 。
CSS 教程: CSS Pseudo-elements
CSS 选择器参考手册: CSS :after 选择器
在每个<p>之前插入的内容和样式:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>基础教程(nhooo.com)</title> <style> p:before { content:"Read this -"; background-color:yellow; color:red; font-weight:bold; } </style </style> </head> <body> <p>我的名字叫萝莉</p> <p>我生活在海边</p> <p><b>注意:</b> :before 作用于 IE8,DOCTYPE 必须已经声明.</p> </body> </html>测试看看 ‹/›