Here is an example page:
http://jsfiddle.net/SkeLLLa/pwfH2/
I want to set 100% height for the content
class (see the "Problem here" comment in the CSS source), but when I do this left and right columns (nested in the content
div) become 0px
height. But when content
has height set in pixels it works fine.
Are there any solutions without JavaScript?
Use
display: inline-block
for the columns andheight:100%
for thehtml
andbody
tags: