有时候,我们发现很多页面内容不多的时候,页面底部内容飘到了中间:
这个页面底部没有固定,结果...,一个前端工程师是无法接受这样的结果的。
这里介绍一种通用的解决办法,让页面底部固定。
思路: 首先需要一个容器包裹所有的页面元素,这里使用<div id="container"></div>来做。id为container的容器需要设置高度100%,否则,当内容较少的时候,还是会飘起来。最后,主要的是footer底部元素需要绝对定位,让他固定在底部。
下面直接上代码:
content.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>layout</title>
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/public.css">
</head>
<body>
<div id="container">