如果没有溢出,如何摆脱灰色滚动条?

时间:2014-04-19 04:08:32

标签: html css scrollbar overflow

如果内容变得过大,我想在我网页的某个部分添加一个垂直滚动条,但即使内容足够小,也会显示灰色的滚动条。我需要更改什么才能使滚动条仅在需要时显示?

示例代码:

<div id="aaa">
</div>

#aaa {
    background-color: #eee;
    width: 50px;
    height: 100px;
    overflow-y: scroll;
}

结果截图:

enter image description here

JSFiddle链接实时示例:

http://jsfiddle.net/PGwg3/

2 个答案:

答案 0 :(得分:7)

这将有效

overflow-y:auto;

答案 1 :(得分:1)

更改属性overflow-y:滚动到overflow-y:auto