I can't get padding-bottom to work when I use overflow-y: auto on a box.
padding-bottom
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; }
Fiddle.
EDIT: I use Firefox
One more solution without extra DIVs.
#container:after { content: ""; display: block; height: 50px; width: 100%; }
Working in FF, Chrome, IE8-10.
1.4m articles
1.4m replys
5 comments
57.0k users