So I just love it when my application is working great in Firefox, but then I open it in IE and... Nope, please try again.

The issue I'm having is that I'm setting a CSS display property to either none or table-cell with JavaScript.

I was initially using display: block, but Firefox was rendering it weird without the table-cell property.

I would love to do this without adding a hack in the JavaScript to test for IE. Any suggestions?

Thanks.

link|improve this question

60% accept rate
3  
Amusing, you use a hack for firefox then look for an IE hack..;) – SLC Apr 6 '10 at 15:43
feedback

8 Answers

up vote 23 down vote accepted

A good way of solving this setting the display value to '':

<script type="text/javascript">
<!--
function toggle( elemntId ) {
    if (document.getElementById( elemntId ).style.display != 'none') {
        document.getElementById( elemntId ).style.display = 'none';
    } else {
        document.getElementById( elemntId ).style.display = '';
    }
    return true;
}
//-->
</script>

The empty value causes the style to revert back to it's default value. This solution works across all major browsers.

link|improve this answer
In chrome, you can set it to initial. :) – Shaz Apr 17 '11 at 1:16
3  
the initial keyword is being added in CSS3 and does behave exactly as the above does, according to the specifications. – Jacco Apr 17 '11 at 9:16
I love these kind of hacks :) – Braveyard Dec 7 '11 at 18:49
feedback

I've solved this using jQuery:

$(document).ready(function(){
  if ($.browser.msie && $.browser.version == 7)
  {
    $(".tablecell").wrap("<td />");
    $(".tablerow").wrap("<tr />");
    $(".table").wrapInner("<table />");
  }
});

the above script assumes you have divs using style such as:

<style>
.table     { display: table; }
.tablerow  { display: table-row; }
.tablecell { display: table-cell; }
</style>
link|improve this answer
+1 brilliant solution, love it :-) – kamui Jan 23 at 17:11
feedback

I had the same issue and used

*float: left;

"*" indicates IE only

link|improve this answer
1  
Really? That's a pretty cool trick. – Ryan Smith Aug 6 '09 at 16:24
2  
To be precise, the * (asterisk) hack addresses IE 7 and below. – Török Gábor Nov 23 '09 at 9:22
Star and underscore hacks: ejeliot.com/blog/63 – Artem Russakovskii Jan 28 '10 at 7:41
2  
The * is a nice trick, but float won't give you evenly spaced elements, which is what you want in a table. – Benubird Dec 22 '10 at 11:30
feedback

Well, IE7 does not have display: table(-cell/-row) so you will have to figure something else out or do browser targeting (which I agree, is bad hack). As a quick fix (I don't know what you're trying to achieve, appearance-wise) you could try display: inline-block and see what it looks like.

Maybe figure out a way to do display: block and solve the problem of "Firefox rendering it weird" instead? Can you describe what you mean by the weird rendering exactly?

link|improve this answer
When you set it to block in Firefox, it renders the table cells on top of each other instead of side by side. I would rewrite the whole thing to use DIVs instead, but I'm far to lazy for that, so I just wrote the sh**ty hack code instead. – Ryan Smith Oct 30 '08 at 2:26
Cool, what does the markup look like? – joelhardi Oct 30 '08 at 2:27
If you are doing block-level elements of some kind, you could set them to float "float: left" so in Firefox they will stack up next to each other instead of in rows. Or "display: inline-block" might work here, but in IE7 it can only be used on elements that would normally be inline, like a or em. – joelhardi Oct 30 '08 at 2:30
feedback

You never need Javascript to test for IE, use conditional comments.

You might look at the solution these guys came up with for handling table-like display in IE.

link|improve this answer
feedback

I've been using CSS for over a decade and I've never had occasion to use display:table-cell, and the only times I ever use conditional comments are to hide advanced effects from IE6.

I suspect that a different approach would solve your problem in an intrinsically cross-browser way. Can you open a separate question that describes the effect you're trying to achieve, and post the HTML and CSS that's currently working in Firefox?

link|improve this answer
feedback

Using inline-block works well for this type of stuff. No, IE 6 and IE 7 technically do not have display: inline-block, but you can replicate the behavior with the following styles:

div.show-ib {
    display: inline-block;
    *zoom: 1;
    *display: inline;
}

The key to this is 'zoom: 1' toggles the 'hasLayout' property on the element which changes the way the browser renders a block level element. The only gotcha with inline block is you cannot have a margin of less than 4px.

link|improve this answer
feedback

Why do people recommend not using <table> when DIVs are infuriatingly broken in half the browsers out there?

If I can't use table and I can't use display:table-cell, then how am I supposed to line up 3 block items horizontally?

link|improve this answer
display: inline-block; – Shaz Apr 17 '11 at 1:14
1  
display:inline-block is just as terribly unsupported – JKirchartz May 25 '11 at 16:09
There's a way to make inline-block work on every browser: foohack.com/2007/11/… – Emanuele Del Grande Apr 2 at 8:41
feedback

Your Answer

 
or
required, but never shown

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