首页htmllist_style_imageCSS Property Value - 如何list-style-image: url

CSS Property Value - 如何list-style-image: url

我们想知道如何list-style-image: url

<html>

<head>
  
  <style>
ul {list-style-image: url("http://placehold.it/20x20");}
li {marker-offset:20px;}
  </style>  
</head>

<body>
<ul>
  <li>This example illustrates using an image for a bullet point.</li>
  <li>This example illustrates using an image for a bullet point.</li>
  <li>This example illustrates using an image for a bullet point.</li>
</ul>
</body>
</html>