调整列表样式的图像位置?
不完全正确。你的内边距(可能)被应用于列表项上,因此只会影响列表项内的实际内容。
使用背景和内边距样式的组合可以创建类似的效果,例如:
li { background: url(images/bullet.gif) no-repeat left top; /* <-- change `left` & `top` too for extra control */ padding: 3px 0px 3px 10px; /* reset styles (optional): */ list-style: none; margin: 0; }
你可能想要在父级列表容器(ul)中添加样式来定位你的带项目符号的列表项,这篇《A List Apart》文章提供了一个很好的起始参考。