hi, I have a problem for my layout... it should be simple but I just can't get it right. It works on Firefox but not on IE.
Problem: the div rightBar should be resizing to the content. If there is a lot of text, it should have the same height (therefore, I used top and bottom on an absolute positioning) the content is all right and it works just the rightBar won't resize.
Here is my markup:
<div id="container" style="position:relative; width:100px;">
<div id="content" style="position:relative; margin-right:10px;"></div>
<div id="rightBar" style="position:absolute; right:0; top:0; bottom:0px; width:10px;"></div>
</div>