CSS - flex-flow

トップ > CSSリファレンス > flex-flow

概要

属性名 flex-flow
<flex-direction> || <flex-wrap>
初期値個々の属性を参照。
適用可能要素個々の属性を参照。
継承個々の属性を参照。
メディア個々の属性を参照。
アニメーション個々の属性を参照。

サポート (説明)

CSSIE/EdgeFirefoxChromeOperaSafari
CSS3112021(-webkit)
29
15(-webkit)
17
6.1(-webkit)
9

説明

flex-directionflex-wrap をまとめて指定します。フレックスボックスについての概要は flex を参照してください。

説明
<flex-direction>flex-direction の値
<flex-wrap>flex-wrap の値

使用例

CSS
.flexbox {
  display: flex;
  display: -ms-flexbox;
  margin: 10px;
  padding: 10px;
  border: 1px solid #999;
  background-color: #ddd;
  width: 250px;
  height: 50px;
}
.boxA, .boxB, .boxC {
  border: 1px solid #999;
  min-width: 100px;
  min-height: 20px;
  height: 22px;
  text-align: center;
}
.boxA { background-color: #fcc; }
.boxB { background-color: #cfc; }
.boxC { background-color: #ccf; }
HTML
<h5>row nowrap</h5>
<div class="flexbox" style="flex-flow:row nowrap">
 <div class="boxA">A</div>
 <div class="boxB">B</div>
 <div class="boxC">C</div>
</div>
<h5>row wrap</h5>
<div class="flexbox" style="flex-flow:row wrap">
 <div class="boxA">A</div>
 <div class="boxB">B</div>
 <div class="boxC">C</div>
</div>
<h5>row wrap-reverse</h5>
<div class="flexbox" style="flex-flow:row wrap-reverse">
 <div class="boxA">A</div>
 <div class="boxB">B</div>
 <div class="boxC">C</div>
</div>
<h5>column nowrap</h5>
<div class="flexbox" style="flex-flow:column nowrap">
 <div class="boxA">A</div>
 <div class="boxB">B</div>
 <div class="boxC">C</div>
</div>
<h5>column wrap</h5>
<div class="flexbox" style="flex-flow:column wrap">
 <div class="boxA">A</div>
 <div class="boxB">B</div>
 <div class="boxC">C</div>
</div>
<h5>column wrap-reverse</h5>
<div class="flexbox" style="flex-flow:column wrap-reverse">
 <div class="boxA">A</div>
 <div class="boxB">B</div>
 <div class="boxC">C</div>
</div>
表示
row nowrap
A
B
C
row wrap
A
B
C
row wrap-reverse
A
B
C
column nowrap
A
B
C
column wrap
A
B
C
column wrap-reverse
A
B
C

関連項目

flex-direction, flex-wrap, flex-flow, order, flex, flex-grow, flex-shrink, flex-basis, justify-content, align-items, align-self, align-content

リンク


Copyright (C) 2015 杜甫々
初版:2015年11月22日、最終更新:2015年11月225日
http://www.tohoho-web.com/css/prop/flex-flow.htm