It seems like I may be facing a unique issue with my webpage layout in Chrome. The entire page is set up with absolutely positioned elements within a container that is relatively positioned. Although this setup is not typical, it was necessary for incorporating rotating images without using the CSS background property.
However, I have encountered an unexpected problem where the footer does not appear when positioned absolutely at bottom: 0; right: 0;
Here is the HTML structure:
<div id="wrapper">
<div id="content">
</div>
<div id="footer">
<ul>
</ul>
</div>
</div>
And here is the CSS styling:
#wrapper {
position: relative;
margin: 0 auto;
width: 940px;
}
#content {
position: absolute;
top: 0;
left: 0;
height: 350px;
}
#footer {
position: absolute;
bottom: 0;
right: 0;
z-index: 10;
}
Update: Due to future content being added dynamically on a WordPress site, the height of the wrapper cannot be predetermined. However, adjustments can be made to set the height of the footer element.