tags:

views:

47

answers:

2

Hi

How do I need to modify this example so that if the its content is longer (in height) than the sidebar, then the sidebar shows the vertical scrollbar?

Thanks

+1  A: 
div#left-sidebar { overflow-y: auto; }

hope that's what u wanted

y34h
+1  A: 

Isn't it like this:

overflow-y: scroll;
Dennis Lauritzen