LoginSignup
0
1

More than 5 years have passed since last update.

flexbox part1

Posted at

flexboxとは

flexible box layout module の略です。名前通りフレキシブルで。これがかなり便利。

flex-direction

・row(デフォルト):横並び。左から。
・row-reverse:その逆。右から。
・column:縦並び。上から
・column-reverse:その逆。下から。

html

html_flex_direction_row.png

css

css_flex_direction_row.png

結果

result_flex_direction_row.png

flex-wrap

・no-wrap:初期値。
・wrap:枠を超えたら、折りたたむ。
・wrap-reverse:右下から始まる。

html

html_flex_wrap.png

css

css_flex_wrap.png

結果

result_flex_wrap.png
今回は、wrap-reverseを使ってみました。

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