|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
Hello,
I am new in writing HTML code. I need to align my Form and it's text. Please view my code and please show me how to align all the square boxes (the square box is where the user type the text input). Currently I have 2 boxes but they are not aligned. The below is my code: <FORM name="input" method="get" > PROJECTROOT: <INPUT TYPE=TEXT SIZE=50 NAME=proj_root> <br> FRONTEND: <INPUT TYPE=TEXT SIZE=50 NAME=frontend> <br>> <BR> <INPUT TYPE=SUBMIT VALUE=Submit onclick="save()"> <BR> </FORM> Would you please . Thank you very much Goober35 <FORM name="input" method="get" > PROJECTROOT: <INPUT TYPE=TEXT SIZE=50 NAME=proj_root> <br> FRONTEND: <INPUT TYPE=TEXT SIZE=50 NAME=frontend> <br>> <BR> <INPUT TYPE=SUBMIT VALUE=Submit onclick="save()"> <BR> </FORM> |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
<form name="input" method="get" action=""> <!-- ARE YOU SURE YOU NEED "GET"
and not "POST"? --> <table cellspacing="0" cellpadding="0" border="0" width="300"> <tr> <td><label for="proj_root">PROJECTROOT: </label></td> <td><input type="text" size="50" name="proj_root" id="proj_root"></td> </tr> <tr> <td><label for="frontend">FRONTEND: </label></td> <td><input type="text" size="50" name="frontend" id="frontend"></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" name="submit" id="submit" value="Submit" onclick="save()"></td> </tr> </table> </form> (your form needs an action attribute value) -- Murray --- ICQ 71997575 Adobe Community Expert (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources ================== "goober35" <webforumsuser@macromedia.com> wrote in message news:gcjmlh$p42$1@forums.macromedia.com... > Hello, > I am new in writing HTML code. I need to align my Form and it's text. > Please view my code and please show me how to align all the square boxes > (the > square box is where the user type the text input). Currently I have 2 > boxes but > they are not aligned. The below is my code: > > <FORM name="input" method="get" > > PROJECTROOT: <INPUT TYPE=TEXT SIZE=50 NAME=proj_root> <br> > FRONTEND: <INPUT TYPE=TEXT SIZE=50 NAME=frontend> <br>> > <BR> > <INPUT TYPE=SUBMIT VALUE=Submit onclick="save()"> <BR> > > </FORM> > > > Would you please . > > Thank you very much > Goober35 > > > <FORM name="input" method="get" > > PROJECTROOT: <INPUT TYPE=TEXT SIZE=50 NAME=proj_root> <br> > FRONTEND: <INPUT TYPE=TEXT SIZE=50 NAME=frontend> <br>> > <BR> > <INPUT TYPE=SUBMIT VALUE=Submit onclick="save()"> <BR> > > </FORM> > |
|
![]() |
| Outils de la discussion | |
|
|