我让页脚停留在页面底部,但我做了一些事情,不知道是什么,现在它在内容下方。我试过改变包装器的最小高度值,但它没有做任何事情。
页脚代码:
<div id='footer'>© Copyright 2013 Austen Patterson. All Rights Reserved.</div>
</body>
</html>
页脚样式:
#footer {
margin-right: 10%;
min-width: 100%;
color: #4bb3e6;
text-align: right;
}
身体/包装风格:
body {
    background:url("http://pattersoncode.ca/incls/pw_pattern.png");
    color: black;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana, sans-serif";
    min-width: 94%;
    min-height: 95%;
    font-family: 'Muli', sans-serif;
}
#wrapper {
    animation: fadein 2s;
    -moz-animation: fadein 0.25s; 
    -webkit-animation: fadein 0.25s; 
    -o-animation: fadein 0.25s;
    min-width: 100%;
    min-height: 95%;
}