这可能是一个简单的问题,但我遇到了麻烦:在我的网页中,我有以下内容:
<head>
<!-- Stuff here -->
</head>
<body>
<header>
<div class="content-wrapper">
<!-- More stuff here... -->
</div>
</header>
</body>
wherecontent-wrapper
在 css 文件中并定义max-width: 960px
. 我遇到的问题是max-width
IE8 中没有效果。在正文中,我有一个表格,我认为它应该受content-wrapper
.
我尝试了几种不同的方法,但没有成功:
添加
style="max-width:960px"
到再加
style="max-width:960px"
上<tr>
这让我感到悲伤添加
style="width:400px"
到有问题的<th>
和<td>
这些都没有在 IE 中工作!有任何想法吗?我错过了什么?
新信息:
我把我的表放在一个 div 标签中,如下所示:
<div style="border: 1px solid; width: 960px">
<!-- Table comes here -->
</div>
正如您在附加图像中看到的那样,div 被正确更改为具有边框和指定宽度,但表格在 IE8 中只是忽略了它。在 Firefox 中它运行良好。