block-size
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2021.
block-size
は CSS のプロパティで、書字方向に応じた要素ブロックの水平または垂直方向の寸法を定義します。これは width
または height
プロパティに相当し、 writing-mode
の値によって変わります。
書字方向が垂直方向であった場合、 block-size
の値は要素の幅に対応し、水平方向であった場合は要素の高さに対応します。関連プロパティの inline-size
が要素のもう一方の寸法を定義します。
試してみましょう
構文
css
/* <length> 値 */
block-size: 300px;
block-size: 25em;
/* <percentage> 値 */
block-size: 75%;
/* キーワード値 */
block-size: max-content;
block-size: min-content;
block-size: fit-content(20em);
block-size: auto;
/* グローバル値 */
block-size: inherit;
block-size: initial;
block-size: revert;
block-size: unset;
値
公式定義
形式文法
block-size =
<'width'>
<width> =
auto |
<length-percentage [0,∞]> |
min-content |
max-content |
fit-content( <length-percentage [0,∞]> ) |
<calc-size()> |
<anchor-size()>
<length-percentage> =
<length> |
<percentage>
<calc-size()> =
calc-size( <calc-size-basis> , <calc-sum> )
<anchor-size()> =
anchor-size( [ <anchor-name> || <anchor-size> ]? , <length-percentage>? )
<calc-size-basis> =
<intrinsic-size-keyword> |
<calc-size()> |
any |
<calc-sum>
<calc-sum> =
<calc-product> [ [ '+' | '-' ] <calc-product> ]*
<anchor-name> =
<dashed-ident>
<anchor-size> =
width |
height |
block |
inline |
self-block |
self-inline
<calc-product> =
<calc-value> [ [ '*' | '/' ] <calc-value> ]*
<calc-value> =
<number> |
<dimension> |
<percentage> |
<calc-keyword> |
( <calc-sum> )
<calc-keyword> =
e |
pi |
infinity |
-infinity |
NaN
例
縦書き時のブロック方向の寸法
HTML
html
<p class="exampleText">Example text</p>
CSS
css
.exampleText {
writing-mode: vertical-rl;
background-color: yellow;
block-size: 200px;
}
結果
仕様書
Specification |
---|
CSS Logical Properties and Values Level 1 # dimension-properties |
CSS Box Sizing Module Level 4 # sizing-values |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- 対応付けされる物理的プロパティ:
width
およびheight
writing-mode