outerHeight(true) gives wrong value

前端 未结 10 1546
旧时难觅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:38

    I think you might need

    .outerHeight({margin: true});
    

    As per here:

    The margin can be included by passing an options map with margin set to true.

提交回复
热议问题