embedテスト

Last-modified: 2020-07-21 (火) 12:26:53

200px

flex_container のパラメーター
https://developer.mozilla.org/ja/docs/Web/CSS/justify-content

flex_box のパラメーター
https://developer.mozilla.org/ja/docs/Web/CSS/flex-basis

  • どうかな? -- 2020-07-21 (火) 01:16:32
  • いいね -- 2020-07-21 (火) 01:19:51
Usage:
#flex_container([配置方法[,列幅の初期値[,折返し方式]]]){{{
...
}}}
例:
#flex_container{{{
#flex_box(200){{
1列目
}}
#flex_box(200){{
2列目
}}
}}}
例:
#flex_container(space-between, 33%){{{
#flex_box{{
1列目
}}
#flex_box{{
2列目
}}
}}}
例:
#flex_container(,300,nowrap){{{
#flex_box{{
1列目
}}
#flex_box{{
2列目
}}
}}}