我正在使用CSS list-style-image
属性。在CSS中,如何将下图中的'A'字对齐到复选标记的中间?
答案 0 :(得分:3)
你最好将背景用于LI元素。
li{
list-style:none;
height: "the height of your bullet image";
line-height: "same value as above";
background:url("bg.png") no-repeat 0 50%;
padding-left: "the width of your bullet image, or even a little bit more";
}