うまく機能するコンテンツがいくつかある場合。そして、私がそれの束のようなものを置くだけ
でもうまくいきます。また、#contentからコンテンツを削除すると、それも機能します。コードが多すぎるので、ペーストビンにtiを貼り付けます。このスクリーンショットでは、問題が示されています。http:
//postimage.org/image/ee448x5yp/
cssで確認できるように、フッターは黒い部分で、緑の部分はhtml、本文です。考えられる解決策はありますか?:(
HTML
<div id="wrap">
<div id="header">
...
</div>
<div id="content">
<div class="center">
...
</div>
</div>
<div id="footer">
...
</div>
</div>
CSS
#wrap {
width: 100%;
min-height: 100%;
margin: 0 auto -75px; /* the bottom margin is the negative value of the footer's height */
position: relative;
text-align: left;
}
#footer {
position: absolute;
bottom: 0;
height: 75px; /* Height of the footer */
width: 100%;
background: #000;
text-align: center;
line-height: 103px;
}
全体的な状況のフィドル