1 回答

TA貢獻1852條經驗 獲得超7個贊
這種東西就在于思路:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<title></title>
</head>
<body>
<style>
body{
margin: 0;
}
html,
body,
.wrap {
height: 100%;
}
.content {
min-height: 100%;
}
footer {
height:50px;
background-color: #0cc;
margin-top: -50px;
}
</style>
<div class="wrap">
<div class="content">
<div>內容區域</div>
</div>
<footer>
底部
</footer>
</div>
</body>
</html>
效果圖:
添加回答
舉報