これが私のhtmlページです。
<!DOCTYPE HTML>
<head>
<style>
#foot {
position:absolute;
bottom:0;
width:100%;
height:60px; /* Height of the footer */
background:#6cf;
}
.container{
border: 1px solid RGB(100,100,100);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 5px;
height: 940px;
width: 1200px;
background: white;
box-shadow: 0px 0px 5px;
position: absolute;
margin-left: 25px;
margin-right: 20px;
margin-top: 80px;
}
</style>
</head>
<body>
<h1>My Page</h1>
<div class="container">
</div>
<footer id="foot">
My footer
</footer>
</body>
</html>
ただし、これにより、ページの間にフッターが保持されます。ここで誰か助けてくれませんか?