> 웹 프론트엔드 > CSS 튜토리얼 > CSS 또는 jQuery를 사용하여 상위 컨테이너의 직계 하위 항목이 아닌 카드 헤더의 높이를 동적으로 동일화하려면 어떻게 해야 합니까?

CSS 또는 jQuery를 사용하여 상위 컨테이너의 직계 하위 항목이 아닌 카드 헤더의 높이를 동적으로 동일화하려면 어떻게 해야 합니까?

Patricia Arquette
풀어 주다: 2024-12-12 14:13:14
원래의
599명이 탐색했습니다.

How can I dynamically equalize the heights of card headers that are not direct children of their parent container using CSS or jQuery?

CSS 또는 jQuery를 사용하여 카드 헤더를 동적으로 균등화

문제:

높이 일치 콘텐츠 및 반응의 변경에도 불구하고 상위 컨테이너의 직계 하위 항목이 아닌 카드 헤더

CSS 솔루션:

이 접근 방식은 HTML 테이블 셀의 인라인 블록 속성과 자동 높이 조정 기능을 활용하여 헤더 높이를 동적으로 균등화합니다.

<table class="parent">
  <thead>
    <tr>
      <th class="header">Header 1</th>
      <th class="header">Header 2</th>
      <th class="header">Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td class="item">
        <div class="content">Content for Header 1</div>
      </td>
      <td class="item">
        <div class="content">Content for Header 2</div>
      </td>
      <td class="item">
        <div class="content">Content for Header 3</div>
      </td>
    </tr>
    <tr>
      <td class="item">
        <div class="content">Content for Header 1</div>
      </td>
      <td class="item">
        <div class="content">Content for Header 2, with extra wrapping</div>
      </td>
      <td class="item">
        <div class="content">Content for Header 3</div>
      </td>
    </tr>
  </tbody>
</table>
로그인 후 복사
.parent {
  display: table;
}
.header {
  display: inline-block;
  background-color: cornflowerblue;
}
.item {
  display: table-cell;
  padding: 20px;
}
.content {
  background-color: salmon;
  flex-grow: 1;
}
로그인 후 복사

jQuery 솔루션:

이 솔루션은 jQuery를 사용하여 헤더의 높이를 동일하게 설정하고 행 또는 열 요구 사항에 따라 사용자 정의할 수 있습니다.

<div class="row">
  <div class="col item">
    <div class="header">Header 1</div>
    <div class="content">Content for Header 1</div>
  </div>
  <div class="col item">
    <div class="header">Header 2</div>
    <div class="content">Content for Header 2</div>
  </div>
  <div class="col item">
    <div class="header">Header 3</div>
    <div class="content">Content for Header 3</div>
  </div>
</div>
로그인 후 복사
$(function() {
  // Preload header elements
  var $headers = $('.header');

  // Set equal height on all headers
  function setEqualHeight() {
    var maxHeight = 0;
    $headers.each(function() {
      maxHeight = Math.max(maxHeight, $(this).outerHeight());
    });
    $headers.css('height', maxHeight + 'px');
  }

  // Set equal height per row
  function setEqualHeightPerRow() {
    var previousTop = 0;
    var height = 0;
    $headers.each(function() {
      var currentTop = $(this).offset().top;
      if (currentTop > previousTop) {
        $(this).css('height', height + 'px');
        previousTop = currentTop;
        height = 0;
      }
      height = Math.max(height, $(this).outerHeight());
    });
    $(this).css('height', height + 'px');
  }

  // Run on load and resize
  setEqualHeight();
  $(window).resize(setEqualHeight);
});
로그인 후 복사

이 솔루션은 동적 및 반응형을 제공합니다. 헤더 높이를 일치시켜 콘텐츠나 화면 크기에 관계없이 UI 디자인의 일관성을 보장합니다.

위 내용은 CSS 또는 jQuery를 사용하여 상위 컨테이너의 직계 하위 항목이 아닌 카드 헤더의 높이를 동적으로 동일화하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿