--- title: inline-size slug: Web/CSS/inline-size translation_of: Web/CSS/inline-size ---
inline-size
CSS 属性影响一个元素的{{cssxref("width")}} 或 {{cssxref("height")}},以改变一个元素的盒模型的水平或垂直大小(是width还是height取决于该元素的{{cssxref("writing-mode")}})。
/* <length> values */ inline-size: 300px; inline-size: 25em; /* <percentage> values */ inline-size: 75%; /* Keyword values */ inline-size: max-content; inline-size: min-content; inline-size: fit-content(20em); inline-size: auto; /* Global values */ inline-size: inherit; inline-size: initial; inline-size: unset;
如果元素的writing-mode是垂直方向的它会影响height,否则默认是影响width。
有一个与inline-size 属性有关的{{cssxref("block-size")}},它定义了元素的其他尺寸。
{{cssinfo}}
inline-size
属性的可选值与{{cssxref("width")}}和{{cssxref("height")}}的可选值一样。
{{csssyntax}}
<p class="exampleText">Example text</p>
.exampleText { writing-mode: vertical-rl; background-color: yellow; inline-size: 110px; }
{{EmbedLiveSample("Example")}}
Specification | Status | Comment |
---|---|---|
{{SpecName("CSS Logical Properties", "#propdef-inline-size", "inline-size")}} | {{Spec2("CSS Logical Properties")}} | Initial definition |
{{Compat("css.properties.inline-size")}}