"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Get the Height of a Div When No Explicit CSS Height is Set?

How to Get the Height of a Div When No Explicit CSS Height is Set?

Published on 2024-12-23
Browse:817

How to Get the Height of a Div When No Explicit CSS Height is Set?

Determine Div Height without Explicit CSS Rule

Getting the height of a div can be challenging if there's no explicitly set height in the CSS. While the .height() jQuery method is typically used for this, it requires an existing CSS rule for proper functionality. Here's an alternative approach:

jQuery Height Functions

jQuery offers a range of height functions that can provide accurate height measurements, even without CSS height rules:

  • .height(): Excludes padding, border, and margin.
  • .innerHeight(): Includes padding but excludes border and margin.
  • .outerHeight(): Includes border but excludes margin.
  • .outerHeight(true): Includes margin.

Usage Demo

The below code snippet demonstrates how to use these functions:

$(function() {
  var $heightTest = $('#heightTest');
  $heightTest.html('Div style set as "height: 180px; padding: 10px; margin: 10px; border: 2px solid blue;"')
    .append('<p>Height (.height() returns) : '   $heightTest.height()   ' [Just Height]</p>')
    .append('<p>Inner Height (.innerHeight() returns): '   $heightTest.innerHeight()   ' [Height   Padding (without border)]</p>')
    .append('<p>Outer Height (.outerHeight() returns): '   $heightTest.outerHeight()   ' [Height   Padding   Border]</p>')
    .append('<p>Outer Height (.outerHeight(true) returns): '   $heightTest.outerHeight(true)   ' [Height   Padding   Border   Margin]</p>')
});

Output:

The div's computed height is displayed in the div itself, providing detailed information about each function's output.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3