当我在框上使用overflow-y:auto时,我无法获得底部填充.
HTML:
<div id="container"> <div id="some_info"></div> </div>
CSS:
#container { padding: 3em; overflow-x: hidden; overflow-y: auto; width: 300px; height: 300px; background: red; } #some_info { height: 900px; background: #000; }
小提琴:http://jsfiddle.net/rwgZu/
编辑:我使用Firefox
解决方法
这是一种可行的方法:
#container { overflow-x: hidden; overflow-y: auto; width: 300px; height: 300px; } #some_info { height: 900px; background: #000; border: 3em solid red; }