--- title: inline-size slug: Web/CSS/inline-size tags: - CSS - CSS Logical Property - CSS Property - Reference - 'recipe:css-property' translation_of: Web/CSS/inline-size ---
inline-size
は CSS のプロパティで、書字方向に応じた要素ブロックの水平または垂直方向の寸法を定義します。これは {{cssxref("width")}} または {{cssxref("height")}} プロパティに相当し、 {{cssxref("writing-mode")}} の値によって変わります。
書字方向が垂直方向であった場合、 inline-size
の値は要素の高さに対応し、水平方向であった場合は要素の幅に対応します。関連プロパティの {{cssxref("block-size")}} が要素のもう一方の寸法を定義します。
/* <length> 値 */ inline-size: 300px; inline-size: 25em; /* <percentage> 値 */ inline-size: 75%; /* キーワード値 */ inline-size: max-content; inline-size: min-content; inline-size: fit-content(20em); inline-size: auto; /* グローバル値 */ inline-size: inherit; inline-size: initial; inline-size: unset;
inline-size
プロパティは、{{cssxref("width")}} や {{cssxref("height")}} プロパティと同じ値を取ります。
{{cssinfo}}
<p class="exampleText">Example text</p>
.exampleText { writing-mode: vertical-rl; background-color: yellow; inline-size: 110px; }
{{EmbedLiveSample("Setting_inline_size_in_pixels")}}
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName("CSS Logical Properties", "#logical-dimension-properties", "inline-size")}} | {{Spec2("CSS Logical Properties")}} | 初回定義 |
{{Compat("css.properties.inline-size")}}