コンテンツにどれだけのテキストが含まれていても、フッターを一番下に保つようにしています。私は何を間違っていますか?レイアウトは次のとおりです。
.top{
width:500px;
height:100px;
background-color:black;
}
.content{
width:500px;
min-height:100%;
position:relative;
}
.footer{
width:500px;
height:100px;
background-color:blue;
position:absolute;
bottom:0;
}
<div class="top"></div>
<div class="content"></div>
<div class="footer"></div>
よろしく、サイモン