溢出滚动

HTML

<div>
    This div is too small to display its contents to display the effects of the overflow property.
</div>

CSS

div {
    width:100px;
    height:100px;
    overflow:scroll;
}

结果

StackOverflow 文档

上面的内容被剪切为 100px×100px 的框,滚动可用于查看溢出的内容。

大多数桌面浏览器都会显示水平和垂直滚动条,无论是否剪切任何内容。这可以避免滚动条在动态环境中出现和消失的问题。打印机可能会打印溢出的内容。