3

我有以下代码和 CSS。它在 Chrome 中运行良好,但在 IE 中不行。有没有办法让它在 IE 中也能工作?

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>    

4

1 回答 1

7

IE7 不支持display:table,您的代码在 IE8、IE9 和 IE10 中看起来不错。所以要么你必须使用一个实际<table>的,或者,如果它是一个选项,使用floats 代替。

没有别的办法,我怕。

编辑:显然这是为您的页面布局。你不应该使用<table>or display:table。只是漂浮一些 DIV 的人!

于 2012-11-14T18:15:44.157 回答