使用: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>