這是我的CSS代碼;Chrome中的CSS表格和最大寬度不起作用
#wrap {
width:50em;
max-width: 94%;
margin: 0 auto;
background-color:#fff;
}
#head {
width:50em;
height:10em;
max-width: 100%;
margin: 0 auto;
text-align:center;
position: relative;
}
#css-table {
display: table;
margin: 1em auto;
position: relative;
width:50em;
max-width: 100%;
}
#css-table .col {
display: table-cell;
width: 20em;
padding: 0px;
margin: 0 auto;
}
#css-table .col:nth-child(even) {
background: #fff;
}
#css-table .col:nth-child(odd) {
background: #fff;
border-right: 4px double #b5b5b5;
}
而我的HTML代碼;
<div id="cont">
<div id="css-table">
<div class="col">123</div>
<div class="col">123</div>
</div>
</div>
當我縮放Firefox窗口時,表格甚至可以縮放至300px寬度的視口...就像我想要的那樣。但在Chrome中,只有當視口大於50em時,表纔會正常顯示。如果我縮小Chrome窗口,則表格會在包裝的右側滲出。
Chrome有沒有這樣做的原因?
正是我需要的,謝謝!顯示錶在Chrome中工作完美:) – TM23