gpt4 book ai didi

html - 如何让 IE 正确显示 CSS DIV 表?

转载 作者:太空宇宙 更新时间:2023-11-04 05:13:10 25 4
gpt4 key购买 nike

我在 Firefox 和 Chrome 中获得了非常好的结果,但是,IE 只是不将 DIV 显示为表格。任何帮助,将不胜感激。这是我正在使用的标记:

CSS

.table {
display: inline-table;
padding: 3px;
}
.row {
display: table-row;
}
.cell {
display: table-cell;
width: 210px;
height: 35px;
}

HTML

<div class="table">
<div class="row">
<div class="cell">Cell 1</div>
<div class="cell">Cell 2</div>
<div class="cell">Cell 3</div>
</div>
</div>

最佳答案

I am using div's to display table data—

把它放在那里

HTML 有一整套专门用于表格的标记,至少从 HTML 2.0 开始就已经存在,如果不是 HTML 2.0 诞生的话。那是在表格显示属性出现在 CSS2.1 中的五年多前,几乎在同一时间第一次浏览器大战开始了。

如果是表格数据,使用表格!

<table>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
</tr>
</table>

关于html - 如何让 IE 正确显示 CSS DIV 表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8808516/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com