Inline block doesn't work in internet explorer 7, 6

前端 未结 2 1278
独厮守ぢ
独厮守ぢ 2020-11-22 08:45

I have this CSS code with an inline-block. Can anyone tell me how to make it work in Internet Explorer 6 and 7. Any ideas? Maybe I\'m doing something wrong? Tha

2条回答
  •  隐瞒了意图╮
    2020-11-22 09:23

    In IE6/IE7, display: inline-block only works on elements that are naturally inline (such as spans).

    To make it work on other elements such as divs, you need this:

    #yourElement {
        display: inline-block;
        *display: inline;
        zoom: 1;
    }
    

    *display: inline uses a "safe" CSS hack to apply to only IE7 and lower.

    For IE6/7, zoom: 1 provides hasLayout. Having "layout" is a prerequisite for display: inline-block to always work.

    It is possible to apply this workaround while keeping valid CSS, but it's not really worth thinking about, particularly if you're already using any vendor prefixed properties.

    Read this for more information about display: inline-block (but forget about -moz-inline-stack, that was only required for the now ancient Firefox 2).

提交回复
热议问题