目录

style overflow 属性

示例

使用overflow属性来滚动溢出的内容:

document.getElementById("myDIV").style.overflow = "scroll";
亲自试一试 »

描述

Overflow 属性设置或返回如何处理在元素框之外呈现的内容。

提示:如果要隐藏整个文档的滚动条,请使用 body 或 html 元素上的 Overflow 属性。


浏览器支持

Property
overflow Yes Yes Yes Yes Yes

语法

返回溢出属性:

object.style.overflow

设置溢出属性:

object.style.overflow = "visible|hidden|scroll|auto|initial|inherit"

属性值

Value Description
visible Content is NOT clipped and may be shown outside the element box. This is default
hidden Content outside the element box is not shown
scroll Scroll bars are added, and content is clipped when necessary
auto Content is clipped and scroll bars are added when necessary
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 可见的
返回值: 一个字符串,表示在元素框之外呈现的内容
CSS版本 CSS2

更多示例

示例

使用overflow属性来隐藏溢出的内容:

document.getElementById("myDiv").style.overflow = "hidden";
亲自试一试 »

示例

返回溢出属性:

alert(document.getElementById("myDiv").style.overflow);
亲自试一试 »

相关页面

CSS教程:CSS 溢出

CSS教程:CSS定位

CSS 参考:溢出属性