Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

overflow-x

这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀。由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变。

概述

当一个块级元素的内容在水平方向发生溢出时,CSS属性overflow-x决定应该截断溢出内容,或者显示滚动条,或者直接显示溢出内容

初始值visible
适用元素non-replaced block-level elements and non-replaced inline-block elements
是否是继承属性
适用媒体visual
计算值as specified
是否适用于 CSS 动画
正规顺序the unique non-ambiguous order defined by the formal grammar

用法

合法值: visible | hidden | scroll | auto
overflow-x: visible
overflow-x: hidden
overflow-x: scroll
overflow-x: auto

overflow-x: inherit

解释

visible
内容不会被截断,且可以显示在内容盒之外。
hidden
内容会被截断,且不会显示滚动条。
scroll
桌面浏览器总是显示滚动条,无论内容是否发生溢出。这可以避免滚动条的显示与消失所导致的元素尺寸不确定的问题。而打印机可能会打印溢出的内容。
auto
取决于浏览器本身。当内容发生溢出时,桌面浏览器如Firefox会显示滚动条。

示例

[fixme]

规范

规范 状态 备注  
CSS Basic Box Model
overflow-x
Working Draft  

浏览器支持

特性 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本支持 1.0 3.5 (1.9.1) 5.0 [*] 9.5 3.0
特性 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本支持 1.0 (Yes) 1.0 (1.9.1) (Yes) (Yes) (Yes)

[*] IE8 引入了属性 -ms-overflow-x ,作用与 overflow-x相同。不要使用前缀-ms-

参见

文档标签和贡献者

 此页面的贡献者: Sebastianz, teoli, Jimmie_Felidae
 最后编辑者: Sebastianz,