CSS 参考手册
CSS :after 选择器
每个<p>元素之后插入内容
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> p:after { content: "- 注意我"; } </style> </head> <body> <p>我的名字是 Donald</p> <p>我住在 Ducksburg</p> <p><b>注意:</b> :after在IE8中运行,必须声明 !DOCTYPE </p> </body> </html>
运行结果:
点击运行 »