각 요소의 너비가 같지만 아래쪽 요소가 항상 위쪽 요소보다 50px 아래에 있는 CSS 그리드 레이아웃을 사용하여 석조 그리드를 만들려면 어떻게 해야 합니까?

Linda Hamilton
풀어 주다: 2024-11-17 11:35:02
원래의
314명이 탐색했습니다.

How can I create a masonry grid with CSS Grid Layout where each element has the same width but the bottom element is always 50px below the top element?

CSS 그리드 레이아웃(또는 기타 CSS)을 사용하여 벽돌 그리드 만들기

이 질문은 벽돌을 만드는 방법을 묻습니다. 높이가 다양한 요소를 사용하는 CSS의 그리드 효과. 각 요소의 너비는 동일하지만 아래쪽 요소는 항상 위쪽 요소보다 50px 아래에 있습니다. 사용자가 부동 소수점 및 Flexbox를 사용하려고 시도했지만 문제가 발생했습니다.

CSS 그리드 레이아웃 사용

해결책은 강력하고 그리드를 생성하는 유연한 방법. 다음 CSS 코드는 원하는 효과를 얻는 방법을 보여줍니다.

grid-container {
  display: grid;             /* Enables the grid layout */
  grid-auto-rows: 50px;      /* Defines the height of each row to 50px */
  grid-gap: 10px;            /* Sets the gap between the grid items */
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); /* Defines the columns to have a minimum width of 30% */
}

[short] {
  grid-row: span 1;         /* Makes the element span only one row */
  background-color: green;
}

[tall] {
  grid-row: span 2;         /* Makes the element span two rows */
  background-color: crimson;
}

[taller] {
  grid-row: span 3;         /* Makes the element span three rows */
  background-color: blue;
}

[tallest] {
  grid-row: span 4;         /* Makes the element span four rows */
  background-color: gray;
}
로그인 후 복사

이 레이아웃을 사용하는 HTML 코드는 다음과 같습니다.

<grid-container>
  <grid-item short></grid-item>
  <grid-item short></grid-item>
  <grid-item tall></grid-item>
  <grid-item tall></grid-item>
  <grid-item short></grid-item>
  <grid-item taller></grid-item>
  <grid-item short></grid-item>
  <grid-item tallest></grid-item>
  <grid-item tall></grid-item>
  <grid-item short></grid-item>
  <grid-item tallest></grid-item>
  <grid-item tall></grid-item>
  <grid-item taller></grid-item>
  <grid-item short></grid-item>
  <grid-item short></grid-item>
  <grid-item short></grid-item>
  <grid-item short></grid-item>
  <grid-item tall></grid-item>
  <grid-item short></grid-item>
  <grid-item taller></grid-item>
  <grid-item short></grid-item>
  <grid-item tall></grid-item>
  <grid-item short></grid-item>
  <grid-item tall></grid-item>
  <grid-item short></grid-item>
  <grid-item short></grid-item>
  <grid-item tallest></grid-item>
  <grid-item taller></grid-item>
  <grid-item short></grid-item>
  <grid-item tallest></grid-item>
  <grid-item tall></grid-item>
  <grid-item short></grid-item>
</grid-container>
로그인 후 복사

이 코드를 사용하면 벽돌 효과를 얻을 수 있습니다. 일관되고 반응적인 방식으로 배열된 다양한 높이의 요소로 구성된 그리드 효과.

위 내용은 각 요소의 너비가 같지만 아래쪽 요소가 항상 위쪽 요소보다 50px 아래에 있는 CSS 그리드 레이아웃을 사용하여 석조 그리드를 만들려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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