I can\'t get padding-bottom to work when I use overflow-y: auto on a box.
padding-bottom
overflow-y: auto
HTML:
Here is a possible approach that is working perfectly :
#container { overflow-x: hidden; overflow-y: auto; width: 300px; height: 300px; } #some_info { height: 900px; background: #000; border: 3em solid red; }