本章节介绍一下元素的滚动条占据的部分是否包含在此height或者width尺寸之中
下面就通过代码实例做一下演示。
代码如下:
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!DOCTYPE html><
html
>
<
head
>
<
meta
charset
=
" utf-8"
>
<
title
>scrollWidth和scrollHeight属性-蚂蚁部落</
title
>
<
style
type
=
"text/css"
>
*{
margin:0px;
padding:0px;
}
#box{
width:200px;
height:150px;
background-color:red;
margin:0px auto;
margin-top:50px;
overflow:scroll;
padding:0px;
}
</
style
>
</
head
>
<
body
>
<
div
id
=
"box"
></
div
>
</
body
>
</
html
>
|
在上面的演示效果可以看出,滚动条占据的部分包含在height和width中。
原文发布时间为:2017-2-17
本文作者:admin
本文来自云栖社区合作伙伴“蚂蚁部落”,了解相关信息可以关注蚂蚁部落