溢位滾動

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 的框,滾動可用於檢視溢位的內容。

大多數桌面瀏覽器都會顯示水平和垂直滾動條,無論是否剪下任何內容。這可以避免滾動條在動態環境中出現和消失的問題。印表機可能會列印溢位的內容。