Home  >  Article  >  Web Front-end  >  How to Make Multiple Div Elements Equal Height Using jQuery or CSS?

How to Make Multiple Div Elements Equal Height Using jQuery or CSS?

DDD
DDDOriginal
2024-11-16 01:59:02791browse

How to Make Multiple Div Elements Equal Height Using jQuery or CSS?

How to Achieve Equal Height Elements Using jQuery or CSS

In web development, aligning elements vertically for an aesthetically pleasing and consistent layout is crucial. This question addresses the challenge of making multiple div elements of equal height, even when they contain varying amounts of content.

jQuery Solution

jQuery, a popular JavaScript library, provides a straightforward approach to identify the tallest element and set the height of others to match it:

$(document).ready(function() {
   var maxHeight = 0; // Initialize maxHeight to 0

   $('.features').each(function() { // Loop through each .features div
     if ($(this).outerHeight() > maxHeight) { // Compare the current div's height to maxHeight
       maxHeight = $(this).outerHeight(); // Update maxHeight if the current div is taller
     }
   });

   $('.features').each(function() { // Loop through each .features div again
     $(this).height(maxHeight); // Set the height of each div to maxHeight
   });
});

This script calculates the tallest div's height and assigns it to all the divs with the ".features" class, resulting in equal heights.

CSS-Only Solution

While CSS lacks direct height selection or comparison capabilities, a workaround using CSS Grid is possible:

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(initial, 1fr));
  align-items: stretch;
}

.features {
  height: 100%;
}

The above is the detailed content of How to Make Multiple Div Elements Equal Height Using jQuery or CSS?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn