我们先建一个普通的无序列表
<ul>
<li>111</li>
<li>222</li>
<li>333</li>
</ul>
关键还是在于css
ul li {
list-style-type: none;
line-height: 1.2em;
background: url("图片的路径") no-repeat 0rem 0.3rem;
background-size: 1.2em 1.2em;
text-indent: 2em;
}
可以实现效果 但其实不好用 个人建议 还是直接用div去做会好控制很对