≪ Today I learned.
RSS購読
    公開日
    タグ
    CSS
    著者
    ダーシノ

    place-itemsでaling-itemsとjustify-itemsを1行で指定する

    place-itemsプロパティを使うとグリッドやフレックスボックスなどにおいて、align-itemsjustify-itemsを1行で指定できる。

    <section id="demo">
      <div class="item"></div>
    </section>
    .section {
      display: grid;
      place-items: center;
    }

    デモ