row-gap (grid-row-gap)
試してみましょう
構文
css
/* <length> 値 */
row-gap: 20px;
row-gap: 1em;
row-gap: 3vmin;
row-gap: 0.5cm;
/* <percentage> 値 */
row-gap: 10%;
/* グローバル値 */
row-gap: inherit;
row-gap: initial;
row-gap: revert;
row-gap: unset;
値
<length-percentage>
-
行を隔てる溝の幅です。
<percentage>
値は要素の寸法に対する相対値です。
公式定義
形式文法
row-gap =
normal |
<length-percentage [0,∞]>
<length-percentage> =
<length> |
<percentage>
例
Flex layout
HTML
html
<div id="flexbox">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
CSS
css
#flexbox {
display: flex;
flex-wrap: wrap;
width: 300px;
row-gap: 20px;
}
#flexbox > div {
border: 1px solid green;
background-color: lime;
flex: 1 1 auto;
width: 100px;
height: 50px;
}
結果
Grid layout
HTML
html
<div id="grid">
<div></div>
<div></div>
<div></div>
</div>
CSS
css
#grid {
display: grid;
height: 200px;
grid-template-columns: 200px;
grid-template-rows: repeat(3, 1fr);
row-gap: 20px;
}
#grid > div {
border: 1px solid green;
background-color: lime;
}
結果
仕様書
Specification |
---|
CSS Box Alignment Module Level 3 # column-row-gap |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- 関連する CSS プロパティ:
column-gap
,gap
- グリッドレイアウトガイド: グリッドレイアウトの基本概念 - 溝