overflow-x CSS property sets what shows when content overflows a block-level element's left and right edges. This may be nothing, a scroll bar, or the overflow content.

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

句法

/* Keyword values */
overflow-x: visible;
overflow-x: hidden;
overflow-x: clip;
overflow-x: scroll;
overflow-x: auto;
/* Global values */
overflow-x: inherit;
overflow-x: initial;
overflow-x: unset;
					

overflow-x 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 left and right edges. If overflow-y is hidden , scroll or auto and this property is visible , it will implicitly compute to auto .
hidden

Content is clipped if necessary to fit horizontally in the padding box. No scrollbars are provided.

clip
Like for 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 horizontally 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
Depends on the user agent. If content fits inside the padding box, it looks the same as 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
					

范例

HTML

<ul>
  <li><code>overflow-x:hidden</code> — hides the text outside the box
    <div id="div1">
      ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
    </div>
  </li>
  <li><code>overflow-x:scroll</code> — always adds a scrollbar
    <div id="div2">
      ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
    </div>
  </li>
  <li><code>overflow-x:visible</code> — displays the text outside the box if needed
    <div id="div3">
      ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
    </div>
  </li>
  <li><code>overflow-x:auto</code> — on most browsers, equivalent to <code>scroll</code>
    <div id="div4">
      ABCDEFGHIJKLMOPQRSTUVWXYZABCDEFGHIJKLMOPQRSTUVWXYZ
    </div>
  </li>
</ul>
					

CSS

#div1, #div2, #div3, #div4 {
  border: 1px solid black;
  width:  250px;
  margin-bottom: 12px;
}
#div1 { overflow-x: hidden;}
#div2 { overflow-x: scroll;}
#div3 { overflow-x: visible;}
#div4 { overflow-x: auto;}
					

结果

规范

规范 状态 注释
CSS Overflow Module Level 3
The definition of 'overflow-x' in that specification.
工作草案

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
overflow-x Chrome 完整支持 1 Edge 完整支持 12 Firefox 完整支持 3.5 IE 完整支持 5
完整支持 5
完整支持 8 Prefixed
Prefixed Implemented with the vendor prefix: -ms-
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
完整支持 81
不支持 3.5 — 81 Alternate Name
Alternate Name Uses the non-standard name: -moz-hidden-unscrollable
IE 不支持 No Opera 不支持 No Safari 不支持 No WebView Android 不支持 No Chrome Android 不支持 No Firefox Android 完整支持 81
完整支持 81
不支持 4 — 81 Alternate Name
Alternate Name Uses the non-standard name: -moz-hidden-unscrollable
Opera Android 不支持 No Safari iOS 不支持 No Samsung Internet Android 不支持 No

图例

完整支持

完整支持

不支持

不支持

实验。期望将来行为有所改变。

实验。期望将来行为有所改变。

使用非标名称。

使用非标名称。

要求使用供应商前缀或不同名称。

要求使用供应商前缀或不同名称。

另请参阅

元数据

  • 最后修改:
  1. CSS
  2. CSS 参考
  3. CSS Overflow
  4. 特性
    1. -webkit-line-clamp
    2. overflow
    3. overflow-block
    4. overflow-inline
    5. overflow-x
    6. overflow-y

Copyright  © 2014-2026 乐数软件    

工业和信息化部: 粤ICP备14079481号-1