I\'m having problems with a side div that won\'t get the height to 100% in Chrome. It works just fine in FF.
div
I\'m using:
html, body { padd
You have to specify your parent with 100% height as well as the child so
html,body{ height: 100%; } #div{ min-height: 100%; height: auto !important; height: 100%; /*for IE*/ }
The !important will overwrite all other height rules. Try that you should have no problems.