0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【React初心者メモ】grid 行や列の自動配置

Last updated at Posted at 2025-05-05

gridでは、grid-cols-*とgrid-rows-*で列数と行数を指定する。
単体で指定した場合の行数と列数の自動調整が少しややこしいので、まとめておきます。

gridのみを指定した場合・・・

1列 × 自動行(要素が増えると自動的に行が追加される)

grid-cols-*のみを指定した場合・・・

*列の数 × 自動行(要素が増えると自動的に行が追加される)

grid-rows-*のみを指定した場合・・・

1列 × *行の数

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?