CSS ul li image to align with text

后端 未结 4 984
情深已故
情深已故 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:22

    There is a good explanation and solution of this here: http://css.maxdesign.com.au/listutorial/master.htm

    It says that using list-style-image results in inconsistent placement of the image with different browsers. Then it explains how to use background images for the bullets for a better result.

提交回复
热议问题