I'm sure someone has noticed this before but I can't seem to find a solution. In IE7 before and after form tags IE inserts line breaks. This is no good! Sample code below... Solutions? Ideas?
<html>
<body>
<div id="pageContent" style="border:1px solid black; background-color:orange;">
<form>
content bad <!-- notice spaces before and after form tags -->
</form>
</div>
<div id="pageContent2" style="border:1px solid black; background-color:orange;">
content good <!-- no spacing -->
</div>
</body>
</html>