forms and line break

windows

Guest
I have three forms that I would like to line up in horizontally together. But it appears there is an auto line break when using forms. Is there a way around this other than trying to build a table structure?<!--content-->What if you used the 3 column layout here:<br />
<!-- m --><a class="postlink" href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html">http://www.thenoodleincident.com/tutori ... boxes.html</a><!-- m --><br />
<br />
And put the forms in each column.<br />
<br />
Just a thought,<br />
<br />
Havik<!--content-->How about this:<br />
<br />
<head><br />
<style type="text/css"><br />
form {margin:0; padding:0}<br />
</style><br />
</head><!--content-->havik - that is a cool site<br />
<br />
Bullschmidt - that does not seem to stop the break<br />
<br />
I ended up just redesigning the layout. But thanks for the input. :)<!--content-->Beach Bum,<br />
<br />
OK, re-reading your post I see that you really are talking about line breaks. Sorry I thought you were talking about the extra vertical space that is involved around the form tag. :rolleyes:<!--content-->CSS:<br />
form {float: left}<br />
.afterform{clear: left}<br />
<br />
HTML:<br />
<form>...</form><br />
<form>...</form><br />
<form>...</form><br />
<div class="afterform">...<!--content-->If you want to put a form in a particular place you could do this:<br />
<form style="position:absolute;top:123px;left:456px;" ...<!--content-->
 
Back
Top