-
我喺黄铭_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>