CSS ul li image to align with text

后端 未结 4 993
情深已故
情深已故 2021-02-19 18:26

I have a CSS like this

ul {
    list-style-image:url(images/bulletArrow.gif);
}

ul li {
    background: url(images/hr.gif) no-repeat left bottom;
    padding: 5         


        
4条回答
  •  耶瑟儿~
    2021-02-19 19:19

    I see you're removing left padding for list items. For IE, you need to do the same with the left margin - either completely remove it (set to zero) or make it something smaller than the default. Then your list items will align nicely.

提交回复
热议问题