This is how chrome show the width and height of the div :
which is cor
Use outerHeight() to get the height with paddings. Use outerHeight(true) to get the height with paddings + margins.
outerHeight()
outerHeight(true)
Here's a link to the documentation.