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>

更新于:2020 年 3 月 13 日

90 次查看

开启你的 职业生涯

通过完成课程获得认证

开始
广告