Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS: Sidebar 100% height no scrolling

Tags:

html

css

I want a sidebar which takes the full height of the screen and doesn't change when scrolling down.

So when I scroll only the contents changes but the navbar stays always the same.

I made a first example: http://jsfiddle.net/CwSD6/

But the none-scroll functionality is missing...

Regards

EDIT: You need to use position: fixed, and top, bottom, left with value 0. http://jsfiddle.net/CwSD6/1/

like image 598
bodokaiser Avatar asked May 19 '12 09:05

bodokaiser


1 Answers

it can be done by doing position: fixed; in <aside>

see this fiddle jsfiddle

like image 123
NullPoiиteя Avatar answered Oct 31 '22 13:10

NullPoiиteя