имеется такая структура: нужно прижать подвал вниз - это работает а вот сделать 100% высоту блока #content не получается - когда контента в блоке мало , то все гормально. А когда много , то подвал поднимается к середине страницы... Как это можно исправить в стилях, не меняя структуру html? <body><div id="karkas"> <div id="head"> header </div> <div id="content-wrapper"> <div id="content"> Some Text </div> </div> <div id="footer_bottom"></div> </div> <div id="footer">footer</div></body>* { padding: 0; margin: 0;}html ,body{ height: 100%;}#karkas { min-height: 100%;}#header{ height: 10px; width: 70%;}#content-wrapper{min-height: 100%;background:#eaeaea;}#content{height: 100%;margin:0 auto;background:#eaeaea;width:60%;}#footer{background:#ccc;height:100px;margin-top:-100px;}#footer_bottom { height: 110px; width: 100%; clear:both; }