如何定位图像列表标记以使文本垂直居中

时间:2011-08-02 05:04:05

标签: html css html-lists

我正在使用CSS list-style-image属性。在CSS中,如何将下图中的'A'字对齐到复选标记的中间?

http://i55.tinypic.com/4pwp42.png

1 个答案:

答案 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";
}