我看过: 分别了解 offsetWidth、clientWidth、scrollWidth 和 -Height
但事实并非如此。例如,
.main {
width: 400px;
overflow: visible;
}
.main table {
width: 600px;
}
<div class="main">
<table>
<thead><tr><th>Foo</th><th>Bar</th></tr></thead>
<tbody>
<tr><td>Row1</td><td>Hello</td></tr>
<tr><td>Row2</td><td>World</td></tr>
</tbody>
</table>
</div>
---------------------------------------
|main |
| ----------------------------------------------------
| | table |
| ----------------------------------------------------
| |
| |
---------------------------------------
主 div 元素的 offsetWidth 和 scrollWidth 相同:400。它们应该分别是 400 和 600,对吧?