I am having trouble with CSS basics.
As you can see on this LIVE DEMO, the left navigation bar takes 100% of body's height. But due to the fact that body only takes 100% viewport's height, it cuts on the bottom of the viewport even when HTML, and content, are both longer than that.
I have tried may things such as:
body, html{min-height:100%}
or
html{height:100%}
body {min-height:100%}
with no positive result.
I need the left nav bar to be as long as HTML (as long as page content, the same should body have).