永发信息网

DIV 永远在最底部 但内容超出会往下走

答案:4  悬赏:70  手机版
解决时间 2021-03-29 00:11
DIV 永远在最底部 但内容超出会往下走
最佳答案

    header
    
    footer
html,body {
    margin: 0;
    padding: 0!important;
    height: 100%;
}
#container {
    min-height: 100%;
    height: auto!important;
    height: 100%;
    position: relative;
}
#header {
    background: #ff0;
    padding: 10px;
}
#page {
    width: 960px;
    margin: 0 auto;
    padding-bottom: 60px;
}
#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #6cf;
    clear: both;
}
全部回答
是不是浮动的问题啊!追问不知道算不算浮动,反正是如果内容少的话,底部DIV就在整个浏览器的底部,,如果内容多的话,底部DIV会随着内容往下撑。这时会出现滚动条,滑动滚动条到最底下,才能看到底部,要的就是这种效果 。追答你是用的什么浏览器啊追问各种浏览器。。
在上一个div里添加一句clear:both;希望能够帮助你~追问好像效果不理想啊。。追答#container{overflow:hidden;}加上这句话就可以了~
把底部div上面的div加上min-height:属性就可以追问
内容信息</div>