企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# overflow-x **版本:CSS3** 继承性:无 ### 语法: **overflow-x** : visible | auto | hidden | scroll 相关属性:[overflow](#) , [overflow-y](#) ### 取值: visible:不剪切内容也不添加滚动条。假如显式声明此默认值,对象将被剪切为包含对象的window或frame的大小。并且clip属性设置将失效auto:此为body对象和textarea的默认值。在需要时剪切内容并添加滚动条hidden:不显示超过对象尺寸的内容scroll:横向显示滚动条 ### 说明: 1. 检索或设置当对象的内容超过其指定宽度时如何管理内容。 ### 兼容性: <table><thead><tr><th class="type">类型</th> <th class="type_ie"><img src="https://box.kancloud.cn/2015-09-02_55e5d38974f63.png" alt="IE" />Internet Explorer</th> <th class="type_firefox"><img src="https://box.kancloud.cn/2015-09-02_55e5d3897c322.png" alt="Firefox" />Firefox</th> <th class="type_chrome"><img src="https://box.kancloud.cn/2015-09-02_55e5d38986593.png" alt="Chrome" />Chrome</th> <th class="type_opera"><img src="https://box.kancloud.cn/2015-09-02_55e5d3898f9bb.png" alt="Opera" />Opera</th> <th class="type_safari"><img src="https://box.kancloud.cn/2015-09-02_55e5d3899981b.png" alt="Safari" />Safari</th> </tr></thead><tbody><tr><td rowspan="4" class="version">版本</td> <td class="support yes"><span>(√)</span>IE6</td> <td class="support yes"><span>(√)</span>Firefox 3.0</td> <td class="support yes"><span>(√)</span>Chrome 1.0.x</td> <td class="support yes"><span>(√)</span>Opera 9.63</td> <td class="support yes"><span>(√)</span>Safari 3.1</td> </tr><tr><td class="support yes"><span>(√)</span>IE7</td> <td class="support yes"><span>(√)</span>Firefox 3.5</td> <td class="support yes"><span>(√)</span>Chrome 2.0.x</td> <td></td> <td class="support yes"><span>(√)</span>Safari 4</td> </tr><tr><td class="support yes"><span>(√)</span>IE8</td> <td></td> <td></td> <td></td> <td></td> </tr><tr><td></td> <td></td> <td></td> <td></td> <td></td> </tr></tbody></table> ### 示例: ![](https://box.kancloud.cn/2015-09-02_55e5d389a2e4e.png) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Content-Language" content="utf-8" /><meta name="robots" content="all" /><meta name="author" content="Tencent-ISRD" /><meta name="Copyright" content="Tencent" /><title>overflow-x</title></head><body><style type="text/css"> .test_demo {overflow-x: scroll; height: 120px; width: 120px; background:#CCCCCC;}</style><div class="test_demo"> 横向显示滚动条</div></body></html> 复制代码 Copyright © 2009 [Tencent ISD webteam](http://webteam.tencent.com/). All Rights Reserved ### 快速跳转 - [语法](# "跳转到“语法”") - [取值](# "跳转到“取值”") - [说明](# "跳转到“说明”") - [兼容性](# "跳转到“兼容性”") - [示例](# "跳转到“示例”")