outerHeight(true) gives wrong value

前端 未结 10 1477
旧时难觅i
旧时难觅i 2021-01-07 18:21

I want the height of a container element, including margins and paddings.

When I hover over the element in Chrome development tool, I get the value that I\'m lookin

10条回答
  •  悲&欢浪女
    2021-01-07 18:25

    Inner hidden, fixed and absolute elements are not properly accounted for using the outerHeight.

    Try the scrollHeight property:

    $('element').prop('scrollHeight')
    

提交回复
热议问题