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?

More than 5 years have passed since last update.

flex-box よく使うやつ React

0
Posted at

レイアウト

Appコンポーネントの中に、
Header、Main、FooterBarが含まれている状態

構成

App
  Header
  Main
  FooterBar

# App
display: flex;

# Header
flex: 1;

# Main
flex: 8;

# FooterBar
flex: 1;

アイテムの整列

# ItemList
display: flex;
 justify-content: space-around;

ItemList
  Item
  Item
  Item
  Item 
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?