scrollHeight实测

86 阅读1分钟

scrollHeight实测

scrollHeight就是不考虑滚动条,将内容全部在页面上展开时的高度,注重要加上 padding,不包括border

-- 小菜菜

scrollHeight = 实际内容尺寸 + padding

我们来看看在box-sizing分别是content-box border-box 时,scrollHeight的值

content-box时的 scrollHeight

image-20221129155705339.png

border-box时的scrollHeight

image-20221129155241163.png

总结

scrollHeight = 实际内容尺寸 + padding