Forum Moderators: not2easy

Message Too Old, No Replies

IE doubles the quantity of pixels

IE doubles the space between text boxes

         

Juane

1:13 am on May 28, 2004 (gmt 0)

10+ Year Member



Hello,

I want to set an space between 3 text boxes of 10 px between each one using the margin attribute
Netscape draws it perfectly but IE takes exactly the double.

Here is the code

Thanks a lot

<html>
<head>
<title>TEXTBOXES</title>
</head>

<body>
<div style="float:left; margin:0px 10px 0px 0px;">
<div>Field A</div>
<input type="text" name="A">
</div>
<div style="float:left; margin:0px 10px 0px 0px;">
<div>Field B</div>
<input type="text" name="B">
</div>
<div style="float:left;">
<div>Field C</div>
<input type="text" name="C">
</div>
</body>
</html>

DrDoc

1:24 am on May 28, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



That would be the IE Doubled Float Margin [positioniseverything.net] bug :)

Juane

6:01 pm on May 28, 2004 (gmt 0)

10+ Year Member



Thanks,

great information!