However, if you trigger hasLayout on a block element, and then set it to display:inline, it magically becomes an inline-block in IE! By using the *property hack (which I love so well), you can hide the display:inline from all non-IE browsers effortlessly.
Here’s the code, in all its brief loveliness:
display:-moz-inline-stack;
A lot of Internet Explorer's rendering inconsistencies can be fixed by giving an element "layout." John Gallant and Holly Bergevin classified these inconsistencies as "dimensional bugs," meaning that they can often be solved by applying a width or
Yes, it's true. There are some people that prefer the look of Internet Explorer to the way Firefox looks (though I've never met one). So, I've created this simple How To guide that shows you<sep/>