非常简单的问题,但我正在努力解决它。问题是我使用了 100% 宽度的表格,然后在一个 TD 中我使用了 100% 宽度的 div,事情是 div 超过了 TD 限制并显示超出 TD 空间。
注意:此问题仅适用于 chrome,其他浏览器工作正常。
<table width=100%><tr>
<td>
<div width=100%> here are contents </div>
</td>
</tr>
</table>
当我使用类似下面的嵌套表时,也会发生同样的事情
<table class="outer-table">
<tr>
<td>
<table class="inner-table">
<tr>
<td>
I'm some content!
</td>
</tr>
</table>
</td>
</tr>
</table>