web-dev-qa-db-ja.com

justify-CSSグリッドで機能しないアイテム

CSSグリッドを使用していて、justify-itemsプロパティをstartに設定しようとしています。

これ(またはそれに関連する他のプロパティ)は機能しておらず、私のテキストエディタ(アトム)では灰色で表示されていますが、これは通常エラーを意味します。

私は仕様を調べましたが、このプロパティは間違いなく仕様の一部であり、動作するビデオチュートリアルも見つかりました。

動かないのに使ってみると、なんで頭が回らない。

コードをcodepenにコピーしても、まだ機能しません。

ここのコードペン: https://codepen.io/emilychews/pen/EvLPgJ

.gridwrapper {
  background: #e6e6e6;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 100px;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  justify-items: start; /* THIS LINE ISN'T WORKING */
  align-items: stretch;
}

.gridwrapper div:nth-child(1) {
  grid-column: 1 / 4;
}

.gridwrapper div:nth-child(6) {
  grid-column: 1 / 3;
}

.gridwrapper div {
  padding: 1em;
  background: red;
  border: white;
  width: 100%;
  color: white;
  box-sizing: border-box;
}

.gridwrapper div:nth-child(odd) {
  background: blue;
}
<div class="gridwrapper">
  <div class="grid double-col double-row">1</div>
  <div class="grid">2</div>
  <div class="grid">3</div>
  <div class="grid">4</div>
  <div class="grid">5</div>
  <div class="grid">6</div>
  <div class="grid">7</div>
  <div class="grid">8</div>
</div>
6
The Chewy

justify-items プロパティは、(コンテナ全体ではなく)列に空き領域を分散することによってグリッドアイテムを整列します。

ただし、この場合、各アイテムが列の全幅を占めるため、空き領域はありません。

.gridwrapper div { width: 100% }

そのルールを削除すると、justify-items動作します。

より完全な説明は次のとおりです。

改訂されたcodepen

.gridwrapper {
  background: #e6e6e6;
  display: grid;
  grid-template-columns: repeat(8, 25px); /* adjustment; otherwise 1fr... */ 
  grid-auto-rows: 100px;                  /* all free space */
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  justify-content: end; /* adjustment */
  align-items: stretch;
}

.gridwrapper div:nth-child(1) {
  grid-column: 1 / 4;
}

.gridwrapper div:nth-child(6) {
  grid-column: 1 / 3;
}

.gridwrapper div {
  padding: 1em;
  background: red;
  border: white;
  /* width: 100%; */
  color: white;
  box-sizing: border-box;
}

.gridwrapper div:nth-child(odd) {
  background: blue;
}
<div class="gridwrapper">
  <div class="grid double-col double-row">1</div>
  <div class="grid">2</div>
  <div class="grid">3</div>
  <div class="grid">4</div>
  <div class="grid">5</div>
  <div class="grid">6</div>
  <div class="grid">7</div>
  <div class="grid">8</div>
</div>
4
Michael_B