【发布时间】:2017-05-15 16:29:37
【问题描述】:
table {
width: 100%;
}
在 IE8 上似乎根本没有做任何事情。
【问题讨论】:
标签: html css internet-explorer width css-tables
table {
width: 100%;
}
在 IE8 上似乎根本没有做任何事情。
【问题讨论】:
标签: html css internet-explorer width css-tables
试试 桌子{ 表格布局:固定; }
我在 IE8 中将表格设置为 100% 宽度时遇到了同样的问题。
【讨论】:
我知道答案,只是在 SO 上没找到,我认为它属于这里。
您必须设置边距才能使其工作:
table {
width: 100%;
margin: 0px;
}
【讨论】: