私はWebアプリケーションを構築しています。
ページにフッターを追加しました。
Firefoxではフッターが大きくなります(水平方向)。考えられる理由はありますか?
ここで説明するように、フッターはスティッキーなdivです-http://ryanfait.com/resources/footer-stick-to-bottom-of-page/
コンテナCSS-
.container{
background: #ffffff;
width: 90%;
min-height: 100%;
height: auto !important;
height: 100%;
background: #FFF;
margin: 0 auto -60px;
max-width: 1200px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
min-width: 768px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
}
フッターCSS-
#footer {
height: 60px;
background-color: #F0F0F0 ;
width: 90%;
margin: 0 auto 0;
-moz-border-radius: 2px;
border-radius: 2px;
}