我々はIE、ChromeとFirefoxの最後の二つのリビジョンをサポートするために持っていると私は、これはIE 7/8では不可能である感じを持っていますが、おそらく私が移動してフッターを持っている何かスクロールバーを何も表示しない - ページを短くするにはどうすればよいですか?
が欠落していますコンテンツ領域の後ろに-280pxだけ上がっています。このコンテンツ領域は、ヘッダー領域を-230px上に移動します。その結果、ページの下部に約320ピクセルの空白部分があります。私はこれを塗りつぶして、グラデーションの下端に見えるようにしますが、実際にはそれを切り取るので、何もスクロールバーがありません。以下のコード例で
-
<div id = "page">
<div id = "topbar">
</div>
<div id = "header">
</div>
<div id = "content">
</div>
</div>
<div id = "footer">
I AM THA FOOTAH<br/> So much cooler than the header these days
</div>
body
{
/* background-color: #040e22; */
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
margin: 0px;
padding: 0px;
}
div
{
display: block;
}
#page
{
background-color: white;
margin: 0px auto;
padding: 0px;
position: relative;
}
#topbar
{
height: 60px;
background-color: #112247;
color: white;
position: static;
}
#header
{
background-color: navy;
color: yellow;
height: 240px;
position: relative;
}
#content
{
min-height: 280px;
background-color: green;
width: 480px;
margin: auto;
position: relative;
top: -230px;
z-index: 1;
height: 2000px;
}
#footer
{
/*background: url("footerGradient.png") repeat-x 50% 0%;*/
background-color: navy;
color: white;
text-align: center;
padding-top: 60px;
height: 220px;
top: -280px;
position: relative;
}
.inner
{
width: 940px;
margin: auto;
}
はどのように私は海軍フッターの下に白を取り除くのですか?
http://ryanfait.com/sticky-footer/ – SLaks