0

ウェブサイト用にスティッキーフッターを作成しましたが、希望どおりに動作しません。常にコンテンツの長さに応じて、完全に一番下に配置したいと思います。代わりに、そのまま画面に常に表示されます。誰かが私を助けることができますか?

このサイト

フッターcss:

#footer{
position: fixed;
bottom: 0;
z-index: 1;
width: 100%;
height: 50px;
clear: both;
background-image: url("../images/footer_pattern.png");

}

4

2 に答える 2

1
#footer{
width: 100%;
height: 50px;
clear: both;
background-image: url("../images/footer_pattern.png");
display: block;
margin-top: 0px;
//if contains children add overflow:hidden;
}
于 2012-08-07T14:38:17.853 に答える
0

あなたの質問は少し曖昧ですが、私が正しく理解していれば、あなたが探しているのはposition:relativeだと思います。

position: relative;
bottom: 10px;

これは、要素と次の相対的な親要素の間に指定された量のスペース(10px)を追加します。幸運を!

于 2012-08-07T14:29:13.177 に答える