我正在处理这段代码,这段代码可以正常工作,Chrome
但不能Firefox
这是代码
<html lang="en-US">
<body><table style="width: 100%;">
<tbody><tr>
<td style="position: relative; width: 50%; height: 500px; vertical-align: top; overflow: hidden;">
<div style="position: absolute; background-color: blue; height: 100%; width: 100%;"></div></td>
<td style="position: relative; width: 50%; height: 500px;"></td>
</tr>
</tbody></table>
</body>
</html>
请解释一下为什么div
在Firefox
覆盖整个屏幕宽度时,它应该只覆盖 50% 的宽度,如图Chrome
所示。