Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone please help me get my head around this bug? With Firefox its working fine but with Internet Explorer 7 its not. It seems not to understand the display: inline-block;.

html:

<div class="frame-header">
    <h2>...</h2>
</div>

css:

.frame-header {
    height:25px;
    display:inline-block;   
}
share|improve this question
1  
What exactly to you to achieve? What effect? – User789 Jul 1 '11 at 7:39

4 Answers

up vote 128 down vote accepted

The IE7 display: inline-block; hack is as follows:

display: inline-block;
*display: inline;
zoom: 1;

By default, IE7 only supports inline-block on naturally inline elements (Quirksmode Compatibility Table), so you only need this hack for other elements.

zoom: 1 is there to trigger hasLayout behaviour, and we use the star property hack for setting the display to inline only in IE7 and lower (newer browsers won't apply that). hasLayout and inline together will basically trigger inline-block behaviour in IE7, so we are happy.

This CSS will not validate, and can make your stylesheet messed up anyways, so using an IE7-only stylesheet through conditional comments could be a good idea.

<!–-[if IE 7]>
<link rel="stylesheet" href="ie7.css" type="text/css" />
<![endif]–->
share|improve this answer
10  
I prefer *zoom:1; to triger hasLayout. So it's more clearly that the *zoom and *display go together – HerrSerker Nov 14 '12 at 12:25
1  
Excellent work around! – dotTutorials Mar 3 at 13:17
1  
Solved my problem. – pthurmond Mar 21 at 19:37
1  
@RoshanWijesena w3schools has nothing to do with w3c and neither are authorities on ie7 – Musa Apr 14 at 0:51
1  
@RoshanWijesena w3schools is not a good resource and is not official at all. Do not depend on it. The fact that they mention or do not mention something does not really mean anything. – bažmegakapa Apr 16 at 7:04
show 3 more comments
.frame-header
{
    background:url(images/tab-green.png) repeat-x left top;
    height:25px;
    display:-moz-inline-box;    /* FF2 */
    display:inline-block;   /* will also trigger hasLayout for IE6+7*/
}
/* Hack for IE6 */
* html .frame-header {
    display: inline; /* Elements with hasLayout and display:inline behave like inline-block */
}
/* Hack for IE7 */
* + html .frame-header {
    display: inline; /* Elements with hasLayout and display:inline behave like inline-block */
}
share|improve this answer

IE7 does not support 'inline-block' properly, more info here: LINK
Use can use: 'inline' instead.

What exactly are you trying to achieve? Make us an example and put here: http://jsfiddle.net/

share|improve this answer
hi. It's ok with 'zoom:1' – lanthuong Jul 1 '11 at 7:38

use inline, it works with this kind of selectors for list items:

ul li {}

or to be specific:

ul[className or name of ID] li[className or name of ID] {}
share|improve this answer
Please do leave a comment when you downvote an answer. – MiddleKay Mar 20 at 4:49
inline is not the same as inline-block. For example, the height: 25px; in the example will not take effect when the element is inline. Also, the question says nothing about lists. – bažmegakapa Apr 25 at 16:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.