一直对于页面置底有一些困惑,下面这个例子不知道能不能解决
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>foot置底</title>
<style type="text/css">
/*html 和 body 的高度必须*/
html,body { height:100%;}
.wrap { position:relative; height:auto; min-height:100%;}
.content { padding-bottom:60px; height:auto; background:yellow;}
.footer { width:100%; height:60px; background:red; left:0; position:absolute; bottom:0;}
</style>
</head>
<body>
<div class="wrap">
<div class="content">
000
</div>
<div class="footer"></div>
</div>
</body>
</html>
最后通过实践,这种方法是可以实现的