【发布时间】:2017-06-19 20:51:59
【问题描述】:
我看过: Understanding offsetWidth, clientWidth, scrollWidth and -Height, respectively
但事实并非如此。例如,
.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吧?
【问题讨论】:
标签: css html scroll width offsetwidth