overflow-inline
CSS
property sets what shows when content overflows the inline start and end edges of a box. This may be nothing, a scroll bar, or the overflow content.
overflow-inline
property maps to
overflow-y
or
overflow-x
depending on the writing mode of the document.
/* Keyword values */ overflow-inline: visible; overflow-inline: hidden; overflow-inline: scroll; overflow-inline: auto; /* Global values */ overflow-inline: inherit; overflow-inline: initial; overflow-inline: unset;
overflow-inline
property is specified as a single keyword chosen from the list of values below.
visible
Content is not clipped and may be rendered outside the padding box's inline start and end edges.
hidden
Content is clipped if necessary to fit the inline dimension in the padding box. No scrollbars are provided.
scroll
Content is clipped if necessary to fit in the padding box in the inline dimension. Browsers display scrollbars whether or not any content is actually clipped. (This prevents scrollbars from appearing or disappearing when the content changes.) Printers may still print overflowing content.
auto
visible
, but still establishes a new block-formatting context. Desktop browsers provide scrollbars if content overflows.
| 初始值 |
auto
|
|---|---|
| 适用于 | Block-containers, flex containers, and grid containers |
| 继承 | no |
| 计算值 |
as specified, except with
visible
/
clip
computing to
auto
/
hidden
respectively if one of
overflow-x
or
overflow-y
is neither
visible
nor clip
|
| 动画类型 | discrete |
visible | hidden | clip | scroll | auto
<ul>
<li><code>overflow-inline:hidden</code> — hides the text outside the box
<div id="div1">
ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
</div>
</li>
<li><code>overflow-inline:scroll</code> — always adds a scrollbar
<div id="div2">
ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
</div>
</li>
<li><code>overflow-inline:visible</code> — displays the text outside the box if needed
<div id="div3">
ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
</div>
</li>
<li><code>overflow-inline:auto</code> — on most browsers, equivalent to <code>scroll</code>
<div id="div4">
ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
</div>
</li>
</ul>
#div1, #div2, #div3, #div4 {
border: 1px solid black;
width: 250px;
margin-bottom: 12px;
}
#div1 { overflow-inline: hidden;}
#div2 { overflow-inline: scroll;}
#div3 { overflow-inline: visible;}
#div4 { overflow-inline: auto;}
| 规范 | 状态 | 注释 |
|---|---|---|
|
CSS Overflow Module Level 3
The definition of 'overflow-inline' in that specification. |
工作草案 |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
overflow-inline
|
Chrome 不支持 No | Edge 不支持 No | Firefox 完整支持 69 | IE 不支持 No | Opera 不支持 No | Safari 不支持 No | WebView Android 不支持 No | Chrome Android 不支持 No | Firefox Android 不支持 No | Opera Android 不支持 No | Safari iOS 不支持 No | Samsung Internet Android 不支持 No |
完整支持
不支持
text-overflow
,
white-space
,
overflow
,
overflow-block
,
overflow-x
,
overflow-y
,
clip
,
display
-webkit-line-clamp
overflow
overflow-block
overflow-inline
overflow-x
overflow-y