IE and absolute positioning divs
- by kainaw
This problem is only in IE. Consider the following HTML:
<html>
<body>
<div style='position:absolute;left:1em;right:1em;top:1em;bottom:1em;overflow:auto;'>
Put more than a full screen of text in here. It should create a scroll inside the div.
In IE, it stretches the div out vertically.
</div>
</body>
…