inline-size:valueandwriting-mode:horizontal-tbis the same as widthinline-size:valueandwriting-mode:vertical-lris the same as heightblock-sizebehaves 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;
}