I am currently working on an aspx page that displays perfectly in Mozilla Firefox but looks distorted in Internet Explorer. The layout in Mozilla appears like this:
<form>
some stuff
<div class="left">
<div class="right>
</form>
However, when I inspect the source code of the page loaded in IE 8, it seems to be structured like this:
<form>
some stuff
</form>
<div class="left">
<div class="right">
I have tried adjusting the CSS properties, padding, and margins with no success. What steps should I take to rectify this issue? Any advice would be greatly appreciated.
Thank you, C