コンテンツがビューポートよりも長い場合、常にビューポートの下部に留まるフッターを取得しようとしています。コンテンツがビューポートの下部まで伸びていない場合、フッターはコンテンツの下部に留まります。
これが私のHTMLです:
<div id="wrapper">
<!-- variable content and other divs in here -->
<div id="footersurround">
<div id="footerparent">
<div id="footer"></div>
<div id="linkshome"><!-- links in here --></div>
</div>
</div>
</div>
そしてCSS:
#wrapper {
position: absolute;
left: 50%;
width: 1024px;
margin: -512px;
margin-top: 8px;
}
#footersurround {
position: fixed;
top: 0;
max-width: 1024px;
width: 100%;
height: 100%;
max-height: inherit; /* I want this to take the same value as the wrappers height if I set it to a value(e.g 768px) it works perfectly but when setting it to inherit it will stretch the whole viewport even if the wrapper does not*/
}
#footerparent {
position: absolute;
bottom: 0;
width: 100%;
z-index: 30;
}
#footer {
position: absolute;
bottom: 0;
margin: 0 auto;
min-height: 60px;
width: 1024px;
background-color: black;
opacity: 0.50;
filter: alpha(opacity=50); /* For IE8 and earlier */
z-index: 16;
}
#linkshome {
position: absolute;
bottom: 0;
margin: 0 auto;
margin-top: -47px;
min-height: 47px;
width: 100%;
max-width: 1074px;
z-index: 17;
text-align: center;
font-size: 24px;
font-family: Verdana;
color: white;
}