css中float和列表圖片list-style-image不能正常解析的說明

來源:互聯網
上載者:User

IE6,7(其他版本未測試)中一個問題:就是同時執行css中的float 和list-style-image時無法正常執行list-style-image代碼的內容。

IE的問題,一般來說請使用background-image+background-repeat即可正確解決問題。

例如:以下代碼是理論上正確的代碼,但是不能得到正確的結果。

.info li {

    list-style-image:url(/images/ok.gif);

    margin:0px 0 12px 5px;

    width:280px;

    float:left;

    padding-left:20px;

}

這也印證了一句話:當一切正常的時候,是最容易出錯的時候。

請使用background-image來替代以上的代碼,參考代碼如下:

.info li {

    background-image:url(../images/ok.gif);

    background-repeat:no-repeat;

    margin:0px 0 12px 5px;

    width:280px;

    float:left;

    padding-left:20px;

}

不知道有沒有更好的辦法來解決這個問題,但是我目前只有這樣做了,有更好的辦法請告訴我。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.