컨테이너 쿼리 카드

이 데모는 컨테이너 쿼리를 사용하여 내장된 반응형 카드를 만듭니다. 카드가 더 좁은 크기의 단일 열 레이아웃에서 더 넓은 크기인 경우 2열 레이아웃으로 전환됩니다.

컨테이너를 만들려면 먼저 상위 요소에 포함을 설정합니다.

/* Set containment on parent */
.container {
  container-name: myContainer;
  container-type: inline-size;
  /* You can also use the shorthand property `container: myContainer / inline-size`.
}

몇 가지 기본 스타일을 설정할 수 있습니다.

.desc {
  display: none;
}

.card {
  text-align: center;
  padding: 0.5rem;
}

그리고 상위 컨테이너의 인라인 너비에 따라 기본 스타일을 업데이트합니다.

/* 2-column grid layout at >=350px */
@container (min-width: 350px) {
  .card {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
}

/* Display description at >=500px */
@container (min-width: 500px) {
  .desc {
    display: block;
  }
}

즉, UI의 여러 부분에 똑같은 구성요소가 있으면 자체 로직을 사용하여 컨테이너의 크기를 조절하고 컨테이너에 가장 잘 맞출 수 있습니다. 전역 표시 영역만 사용할 때보다 카드 레이아웃을 더 잘 제어할 수 있습니다. 다음은 다양한 열 너비의 그리드에 컨테이너 쿼리 카드를 배치하여 이를 보여줍니다.

Codepen 데모를 살펴보세요.

HTML

<div class="container">
  <div class="card">
    <div class="visual"></div>
    <div>
      <div class="meta">
        <h1>Card Title Here</h1>
        <h2 class="time">Subtitle</h2>
      </div>
        <p class="desc">Here is some descriptive text to support the main idea of the card. It will be hidden when there is less inline space.</p>
      <button>I'm a button</button>
    </div>
  </div>
</div>

CSS


        /* Set containment on parent */
.container {
  container: inline-size;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

/* Base Styles */
.visual {
  aspect-ratio: 1 / 1;
}

.desc {
  display: none;
}

.card {
  text-align: center;
  padding: 0.5rem;
}

/* Responsive styles */

/* 2-column grid layout at >=350px */
@container (min-width: 350px) {
  .card {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }
}

/* Display description at >=500px */
@container (min-width: 500px) {
  .desc {
    display: block;
  }
}