alignment problem

liunx

Guest
hi,<br />
<br />
how i can get all fields in single line after ENTER OPTION NAME:<br />
i mean to say all fiels after this but presently it comes under that<br />
<br />
im posting the code for more clarity hope this is clear<br />
<br />
thanks alot<br />
<br />
<TABLE border="1" width="170" height="1" bgcolor="#666666" align="left" cellspacing="0" cellpadding="0" bordercolor="#FFFFFF"><br />
<TR bordercolor="#FFFFFF" bgcolor="#333333"><br />
<TD height="1" colspan="3"><br />
<P align="center"><B><FONT face="Arial" size="2" color="#FF6600">Hauptvorgang</FONT></P><br />
</TD><br />
</TR><br />
<br />
<TR bordercolor="#FF6600"><br />
<TD nowrap>Enter Option Name:<br />
<form name=FORMhvorgang action='useradmin.php' method=post> <input type=text size=10 name=NEWhvorgang> <SELECT name=hvorgang><option>test1</option><option>test1</option> </SELECT> <input type=submit name=add value=add><br />
<input type=submit name=remove value=remove></form> </TD><br />
</TR><br />
<br />
<TR bordercolor="#FFFFFF" bgcolor="#333333"><br />
<TD height="1" colspan="3"><br />
<P align="center"><B><FONT face="Arial" size="2" color="#FF6600">Untervorgang</FONT></P><br />
</TD><br />
</TR><br />
<br />
<TR bordercolor="#FF6600"><br />
<TD nowrap>Enter Option Name:<br />
<form name=FORMuvorgang action='useradmin.php' method=post><br />
<input type=text size=10 name=NEWuvorgang><br />
<SELECT name=uvorgang> </SELECT> <input type=submit name=add value=add><br />
<input type=submit name=remove value=remove></form> </TD><br />
</TR><br />
<br />
<br />
</TABLE><!--content-->the <form> tag puts in a line break in the browser<br />
<br />
put your "Enter option name:" inside the <form><!--content-->Remember to "Quote" all attributes, especially all "#FFFFFF" colors, all URLs, all "50%" sizes, and any other attribute value that contains anything other than a simple "A" to "Z" or "0" to "9" value. In HTML 4.01 it is recommended to quote all attribute values.<br />
<br />
<br />
<br />
It never used to matter if tags used upper or lower case. In HTML 4.01 it is recommended to write all tags and attributes in lower case. For XHTML an XML it then becomes a requirement.<!--content-->
 
Back
Top