开发者

How to make width at 100% on a table work in IE8?

table {
  width: 100%;
}

doesn't seem to do anything at all on I开发者_开发问答E8.


Try table{ table-layout:fixed; }

I had the same issue making the table 100% width in IE8.


I knew the answer, just didn't find it on SO, I think it belongs here.

You have to set the margin to make it work:

table {
  width: 100%;
  margin: 0px;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜