我正在尝试制作一个带有居中换行 div 和居中粘性页脚的 HTML5 页面。这是我的 HTML:
<body>
<div id="wrapper">
wrapper
</div>
<footer>
this is footer
</footer>
</body>
这是我的 CSS:
#wrapper {
width:800px;
height:100%;
padding:5px;
margin:0 auto;
background-color:#fff;
border-radius:10px 10px 0 0;
box-shadow:0 1px 10px 3px #666;
}
footer {
background-color:#060318;
color:#3cc9e7;
width:800px;
padding:5px;
position:fixed;
bottom:0;
}
这是我得到的结果:
如何使它们都居中并使页脚保持粘性?