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

I have the following code and css. It works good in Chrome, but not in IE. Is there any way to make it work in IE too? Thanks

CSS:

<style type="text/css">
        .table {width:100%;height: 1%;background-color: lime;display: table;border-collapse: collapse;}
        .row {display: table-row;}
        .centercell {vertical-align: top;display: table-cell;background-color: #0f0;}
        .top{background-color:yellow;width:100%;height:20px;z-index: 1;position: relative;}
        .bottom{background-color:yellow;width:100%;height:20px;z-index: 1;position: relative;}
        .middle{background-color:pink;width:100%;height: 100%;margin: -20px 0px;position: relative;padding: 20px 0px;}
        .rightcell {vertical-align: top;background-color: #f00;display: table-cell;width:155px;background-image: url('img/bg1.gif');background-repeat:repeat-y}
        .leftcell {vertical-align: top;background-color: #f00;display: table-cell;width:171px;}
    </style>

HTML:

<div class="table">
<div class="row">
    <div class="leftcell">
        right column
    </div>
    <div class="centercell">
        <div class="top">center top</div>
        <div class="middle">center middle</div>
        <div class="bottom">center bottom</div>
    </div>
    <div class="rightcell">
        right column<br> 
        right column<br> 
        right column<br> 
        right column<br> 
        right column<br> 
        right column<br> 
        right column<br> 
        right column<br> 
    </div>
</div>    

share|improve this question
1  
IE7 and below don't support display: table, so the only workaround is actually using a table. caniuse.com/css-table – Andy Nov 14 '12 at 18:08
IE8 does... quirksmode.org/css/display.html – Robert Koritnik Nov 14 '12 at 18:10
1  
Here's a JSFiddle for everyone (took two seconds to make): jsfiddle.net/U9eVA – Django Reinhardt Nov 14 '12 at 18:11
2  
@RobertKoritnik Hence "7 and below" – Andy Nov 14 '12 at 18:11
@Andy: Since you've changed your comment. Originally it only said IE... Hence my IE8 comment... ;) – Robert Koritnik Nov 14 '12 at 18:13
show 2 more comments

1 Answer

IE7 doesn't support display:table, your code looks fine in IE8, IE9 and IE10. So either you must use an actual <table> or, if it's an option, use floats instead.

No other way, I'm afraid.

Edit: Apparently this is for your page layout. You shouldn't be using <table> or display:table. Just float some DIVs man!

share|improve this answer

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.