在100%的总体布局中,我有一个问题使我的一个元素100%.
我尝试了不同的定位解决方案,我最终会隐藏内容,底部的页脚后面的浮动,或者内容最终落在页脚后面,并在页脚后面继续.
这是我的页面布局.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"> <head> <style> *{margin:0} html,body{margin:0; padding:0; height:100%} .wrapper{position:relative; margin:0 auto -200px; height:auto !important; height:100%; min-height:100%} .container{width:930px; margin:0 auto; text-align:left} .right{float:right; width:680px; background:#FFF; margin:60px 10px 0 0; padding:0} .left{float:left; width:240px} .content{padding:10px} .footer{position:absolute; width:100%} .footer,.push{height:200px} </style> </head> <body> <div class="wrapper"> <div class="container"> <div id="left"> left </div> <div class="right"> <div class="content"> content </div> </div> <div class="push"></div> </div> <div class="footer"> footer </div> </div> </body> </html>
页面的布局是100%的高度和页脚在底部工作它只是div与类名称内容,我想要是100%,并且如果内容到达页脚,而不是消失,进一步向下推页脚.
任何帮助最感激.