哪个元素用于通过 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>
广告