当我将宽度设置为自动时;在Chrome 80中,表的宽度最多为100%。在Chrome 100+中,表的宽度可以大于100%。我想知道是什么原因导致了这个问题,以及如何解决它。
<html>
<head></head>
<body>
<div style="overflow-x:auto">
<table style="width:auto">
<colgroup>
<col style="width: 3000px; min-width: 3000px;">
</colgroup>
<thead>
<tr>
<th style="background-color: red;color: black">
1
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="background-color: red;color: black">
1
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
1条答案
按热度按时间klsxnrf11#
虽然替换宽度:自动宽度:最大内容具有效果。但我不知道原因。