CSS 中哪一个元素用于给元素前插入某些内容
使用 :before 元素以便在元素之前插入一些内容。
示例
你可以尝试运行以下代码以使用 CSS 在元素前插入一些内容 −
<html> <head> <style> p:before { content: url(/images/bullet.gif) } </style> </head> <body> <p> This line will be preceded by a bullet.</p> <p> This line will be preceded by a bullet.</p> <p> This line will be preceded by a bullet.</p> </body> </html>
广告