1
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.

HTML & CSS (Flexbox編)

Last updated at Posted at 2019-10-01

#Flexboxとは
・縦、横並びができる。
・折り返しを付けられる。

##横並び
###display:flex
 指定した要素の子要素を横並びにする。
 ↓
 **親要素(ul)**にdisplay:flexをかける。
 子要素(li)が横並びになる

ul {
 display:flex;
}

###flex:auto
 要素の幅を親要素に合わせて伸縮させることができる。
 ↓
 **子要素(li)**にflex:autoをかける。

ul {
 display:flex;
}
li {
 flex:auto;
}

###flex-wrap:wrap
 子要素のサイズ(width)に応じて折り返す
 ↓
 親要素flex-wrap:wrap
 子要素widthを設定する。(%で)

例えば、2列にしたいときは、子要素にwidth:50%;を付ける。

##縦並び
###flex-direction:column
 子要素を上から下へ並べる。
 ↓
 親要素flex-direction:columnを付ける。
 子要素にmargin:0 autowidthを設定すると中央寄せできる。

1
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
1
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?