inline-size:value
andwriting-mode:horizontal-tb
is the same as widthinline-size:value
andwriting-mode:vertical-lr
is the same as heightblock-size
behaves in reciprocal way
inline-size:value
and writing-mode:horizontal-tb
is the same
as widthinline-size:value
and writing-mode:vertical-lr
is the same as
height
block-size
behaves in reciprocal way.inline_size1 { inline-size: 150px; writing-mode: horizontal-tb; }
.inline_size2 { inline-size: 150px; writing-mode: vertical-lr; }
.block_size1 { block-size: 150px; writing-mode: horizontal-tb;
.block_size2 { block-size: 150px; writing-mode: vertical-lr; }