Forum Moderators: not2easy
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>