计算scrollWidth/scrollHeight时,与padding相关的差异。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
*{
padding: 0;
margin: 0;
}
.box{
width: 200px;
height: 200px;
border: 10px solid blue;
padding: 10px;
overflow: auto;
}
.inner{
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<div id="box" class="box"><div class="inner"></div></div>
<script>
console.log(box.scrollWidth);
console.log(box.scrollHeight);
</script>
</body>
</html>

http://img2.mukewang.com/5a69c7fb00014f5601990116.jpg

为何宽度计算,比高度要少算10px。

长相思兮
浏览 1525回答 2
2回答

weibo_哆啦A梦有大口袋_0

5.scrollWidth和scrollHeight document.body的scrollWidth和scrollHeight与div的scrollWidth和 scrollHeight是有点区别的。 1.给定宽高小于浏览器窗口 scrollWidth通常是浏览器窗口的宽度 scrollHeight通常是浏览器窗口的高度 2.给定宽高大于浏览器窗口,且内容小于给定宽高 scrollWidth给定的宽度+其所有的padding、margin和border scrollHeight给定的高度+其所有的padding、margin和border
打开App,查看更多内容
随时随地看视频慕课网APP