CSS Display inline-block issue with IE

后端 未结 1 536
醉梦人生
醉梦人生 2020-12-17 03:01

I’ve faced with an issue with IE6 & IE7 issue and I was hoping someone had a solution for me other than to not use IE6/7. The cost on the right needs to be on the same l

相关标签:
1条回答
  • 2020-12-17 03:26

    This link can help to solve it: Cross-Browser Inline-Block

    The very least you need to make inline-block work cross-browser (incl IE6/7) is:

    .my-inline-block {
        display: inline-block;
        *zoom: 1;
        *display: inline;
    }
    

    You may need to fix additional quirks; details and explanations are in the link...

    0 讨论(0)
提交回复
热议问题