怎么让底部永远在底部啊?无论是有没有撑满屏幕,大神求指教

丽姐做前端
浏览 2142回答 6
6回答

我喺黄铭_M君

不太清楚你想表达什么...给需要置底的部分加上样式 position:fixed再调试下吧..

慕哥0734434

html{min-height: 100%},body{min-height: 100%)

K丶L

position设为fixed就可以了

yamizero

<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>Document</title>    <style type="text/css">        #bottom{            width: 100%;            height: 50px;            background-color: #096;            position: fixed;            left: 0;            bottom: 0;        }    </style></head><body>    <div id="bottom">这个DIV在底部</div></body></html>
打开App,查看更多内容
随时随地看视频慕课网APP