Tag cloud
See my latest projects
About this site
This site is proudly powered by WordPress. If you like what you see, why not subscribe?
Copyright © 2008-2010 Aaron Russell. All rights reserved.
Monday, 27 October 2008
The CSS display property can be the bane of the web designer’s life as support varies from browser to browser, making it all a bit more complicated than it should be. In this article I will show a quick and simple way to get the display:inline-block declaration rendering consistently across all major browsers.
Quirksmode offers a very useful summary of browser support for the display property. As you’d expect, Internet Explorer is the main cause of problems as support for the inline-block value is ‘incomplete’ (read ‘flakey’). Surprisingly, Firefox 2 also causes unexpected problems as the value is not supported at all.
I know most Firefox users actively upgrade and so started using Firefox 3 long ago (which supports inline-block with no issues at all). However, that’s what makes this little problem all the more difficult to spot as chances are you don’t have Firefox 2 lying around for testing any more?
Whilst Firefox 2 doesn’t support inline-block, what it does support is the Mozilla specific -moz-inline-box value – which to you and me and all our end users is exactly the same. So this is easy to fix.
#mydiv .myclass { display: -moz-inline-box; display: inline-block; }
Back to our friend Internet Explorer and we need to add another couple of lines to our CSS to get this working in both IE6 and IE7. By combining a couple of IE version-specific filters with a display:inline declaration after we have made our display:inline-block declaration, Internet Explorer starts behaving itself.
* html .myclass { display:inline; } /* for IE 6 */ * + html .myclass { display:inline; } /* for IE 7 */
Honestly, I have know idea why this works. I’m sure some greater CSS brains than mine out there know exactly what is going on, but for me this doesn’t make sense and is confusing. But… it works, which is good enough.
So when we round all this together we have a snippet of CSS that should look vaguely like this:
.myclass { display: -moz-inline-box; display: inline-block; } * html .myclass { display:inline; } /* for IE 6 */ * + html .myclass { display:inline; } /* for IE 7 */
And there we have it – cross browser support for display:inline-block. Hopefully this tip will save you countless hours of hair-pulling frustration.
“Hopefully this tip will save you countless hours of hair-pulling frustration.”
Too bad that the IE6 implementation doesn’t work for me
. Keeps being block element in IE6 (and I don’t have problems with inline-blocks in IE7?).
[...] Cannot center images gallery for Mopics How to achieve cross-browser support for inline-block :: Aaron Russell ? A wee example would be much appreciated or us slow learners [...]
[...] aaronrussell.co.uk/blog/cross-browser… [...]
I found some other sites, with solutions for this problem, but this one worked best for me. Thanks.
[...] aaronrussell.co.uk/blog/cross-browser… [...]
Thanks! This solution did it!
Even in IE8 they didn’t implent inline-block properly
Here us another way to put it which I think is cleaner:
.myclass {
display: -moz-inline-box;
display: inline-block;
*display:inline;
}
source: http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/
Last week I asked the question on Twitter, “What HTML element do you use for each line of a form? P, DIV, or something else?” So, how do you do your forms?
This years season of 24 ways article has come to a close and with it a reoccurring theme of controversy has arisen: designing in the browser. I offer my thoughts on why it misses the point.
The problem with CSS pre-processing frameworks is that they don’t really fit within the average web designers’ work flow. So I built an extension to LESS for creating cached stylesheets your PHP projects can use.
Are you a web designer or are you a web developer? Let me guess, you are a bit of both. Does that mean you are “doing it wrong”?
If you’re like me then your life revolves around email. Unfortunately the grip that email now has on all our lives creates as many problems as it solves. Learn how I control my Inbox.
“@JohnONolan what about ear buds? do they make you cough, or just fingers?”
Posted about 2 hours ago.
This site is proudly powered by WordPress. If you like what you see, why not subscribe?
Copyright © 2008-2010 Aaron Russell. All rights reserved.