Reputation: 9543
I really would like to get a scrollbar for the page cause atm the stuff goes out of the window as if overflow: hidden is set but i didn't use that.
I could drop all my code here but i think a jsfiddle will serve better:
I tried
body {
border: 0;
padding: 0;
margin: 0;
font-family: "Helvetica";
font-size: 20px;
overflow: visible;
}
and also with scroll, auto, inherit, it all didn't help.
Upvotes: 1
Views: 66
Reputation: 66389
It happens because you set a fixed position to everything.
Removing the fixed position from the entries
element cause scroll bar to appear. Updated fiddle.
Upvotes: 5