Is there some way to workaround this with CSS that is hopefully
compatible across the board? I had a small javascript that will
dynamically write a new div with the computed height of the container
layer that displayed the sidebar correctly, but it messed up some other
positioning that I had done, so I was trying to go back to something a
little more standard. Someone also mentioned that I should try
resorting to the transitional DTD (using strict right now) but that
seemed to have no effect.
Thanks for any help
-Mike
The simplified html:
<div id="main">
<div id="content">
tons of content ...
</div>
<div id="sidebar">
</div>
</div>
and the simplified stylesheet
#main {
width: 100%;
background-color: #CCCCCC;
}
#content {
float: left;
width: 80%;
background-color: #FFFFFF;
}
#sidebar {
position: absolute;
height: 100%;
top: 0em;
right: 0em;
background-color: #000000;
}