Hi,
I was just skinning a website and found that overflow:visible renders two completely different things from Firefox to IE.
Firefox just displays everything outside of the container... like this:
--------------------------------
| div style="overflow:visible" |
--------------------------------
//overflow content from the div above
But IE expands the container to fit the overflow... like this:
-----------------------------------------
| div style="overflow:visible" |
| //overflow content from the div above |
-----------------------------------------
Anyone know why IE displays it differently and how to get them both to render the same way Firefox is?
Thanks,
Matt