IE 中表格单元格宽度改变

发布于 2024-10-12 09:21:33 字数 134 浏览 4 评论 0原文

我有一个相当复杂的表格,在 IE 中无法正确显示。由于某种原因,它忽略单元格宽度并使某些单元格比我指定的更大/更小。

它在 Safari 和 Firefox 中运行良好。

这是一个已知问题吗?如果是,是否有简单的解决方法?

I have a fairly complex table which is not displaying correctly in IE. For some reason it is ignoring the cell widths and making some cells bigger/smaller than I have specified.

It works fine in Safari and Firefox.

Is this a known issue and if so is there an easy fix?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱武穆 2024-10-19 09:21:33

由于 IE 显示不同,这可能是由于默认浏览器样式所致 - 您是否尝试过使用重置样式表?

或者,如果您手动设置表格上的所有宽度并且不希望表格根据其内容自行调整,您可以使用:

table {
table-layout:fixed
}

这就是我可以建议的所有内容,而无需看到更多代码。

Since IE is displaying differently it may be due to default browser styles - have you tried using a reset stylesheet?

Alternatively, if you are setting all the widths on a table manually and don't want the table to adjust itself according to it's content, you can use:

table {
table-layout:fixed
}

That's about all I can suggest without seeing more code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文