コンテナクエリカード

このデモでは、コンテナクエリを使用して、組み込みでレスポンシブなカードを作成します。このカードは、幅が狭くなる 1 列レイアウトから、幅が広いと 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;
  }
}