overflow-y
CSS
property sets what shows when content overflows a block-level element's top and bottom edges. This may be nothing, a scroll bar, or the overflow content.
/* Keyword values */ overflow-y: visible; overflow-y: hidden; overflow-y: clip; overflow-y: scroll; overflow-y: auto; /* Global values */ overflow-y: inherit; overflow-y: initial; overflow-y: unset;
overflow-y
property is specified as a single keyword chosen from the list of values below.
若
overflow-x
is
hidden
,
scroll
or
auto
and this property is
visible
(default) it will implicitly compute to
auto
.
visible
Content is not clipped and may be rendered outside the padding box's top and bottom edges.
hidden
Content is clipped if necessary to fit vertically in the padding box. No scrollbars are provided.
clip
hidden
, the content is clipped to the element's padding box. The difference between
clip
and
hidden
is that the
clip
keyword also forbids all scrolling, including programmatic scrolling. The box is not a scroll container, and does not start a new formatting context. If you wish to start a new formatting context, you can use
display: flow-root
to do so.
scroll
Content is clipped if necessary to fit vertically in the padding box. 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.
| 初始值 |
visible
|
|---|---|
| 适用于 | 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-y:hidden</code> — hides the text outside the box
<div id="div1">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</li>
<li><code>overflow-y:scroll</code> — always adds a scrollbar
<div id="div2">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</li>
<li><code>overflow-y:visible</code> — displays the text outside the box if needed
<div id="div3">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</li>
<li><code>overflow-y:auto</code> — on most browser, equivalent to <code>scroll</code>
<div id="div4">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
</div>
</li>
</ul>
#div1,
#div2,
#div3,
#div4 {
border: 1px solid black;
width: 250px;
height: 100px;
}
#div1 { overflow-y: hidden; margin-bottom: 12px;}
#div2 { overflow-y: scroll; margin-bottom: 12px;}
#div3 { overflow-y: visible; margin-bottom: 120px;}
#div4 { overflow-y: auto; margin-bottom: 120px;}
| 规范 | 状态 | 注释 |
|---|---|---|
|
CSS Overflow Module Level 3
The definition of 'overflow-y' in that specification. |
工作草案 |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
overflow-y
|
Chrome 完整支持 1 | Edge 完整支持 12 | Firefox 完整支持 3.5 |
IE
完整支持
5
|
Opera 完整支持 9.5 | Safari 完整支持 3 | WebView Android 完整支持 1 | Chrome Android 完整支持 18 | Firefox Android 完整支持 4 | Opera Android 完整支持 14 | Safari iOS 完整支持 1 | Samsung Internet Android 完整支持 1.0 |
clip
value
Experimental
|
Chrome 不支持 No | Edge 不支持 No |
Firefox
完整支持
81
|
IE 不支持 No | Opera 不支持 No | Safari 不支持 No | WebView Android 不支持 No | Chrome Android 不支持 No |
Firefox Android
完整支持
81
|
Opera Android 不支持 No | Safari iOS 不支持 No | Samsung Internet Android 不支持 No |
完整支持
不支持
实验。期望将来行为有所改变。
使用非标名称。
要求使用供应商前缀或不同名称。
text-overflow
,
white-space
,
overflow
,
overflow-x
,
clip
,
display