【发布时间】:2017-05-25 16:53:24
【问题描述】:
【问题讨论】:
标签: css list html-lists
【问题讨论】:
标签: css list html-lists
我想你可以在这里找到答案Adjust list style image position?
使用位置属性top、left 定位您的图像,然后使用填充来定位它们:
li {
background: url(images/bullet.gif) no-repeat left top;
padding: 3px 0px 3px 10px;
margin: 0;
}
【讨论】:
在 css 部分尝试background:url('image/path') left center no-repeat。
【讨论】: