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-2009 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 [...]
With the advent of modern browsers and full page zooming I take a look at the issue of relative versus absolute font sizing and whether it’s time to think again.
Having been using ExpressionEngine for a few weeks now, I offer my first impressions and try to answer whether it is the perfect CMS.
Here are five tips designers should follow to make developers’ lives easier and so that everyone can live together in web design harmony.
I’ve begun using AudioBoo, a service that allows you to record short sharp audio podcasts – think Twitter for audio. Despite still finding the sound of my own voice somewhat cringe-worthy, I’m rather enjoying it.
I am delighted announce the launch of brownnosefriday.com, the first web application to recognise and reward Twitter’s top brown nosers.
“Just fired up the Barbie, wine in the freezer, beer in my hand. All I need now id my girlfriend to turn up to eat with me #wheretheheckisshe”
Posted about 29 mins ago.
This site is proudly powered by WordPress. If you like what you see, why not subscribe?
Copyright © 2008-2009 Aaron Russell. All rights reserved.