Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

space between intut text and its submit button

Status
Not open for further replies.
The only real difference between your HTML and the HTML you point at is that the programmer of the other site hit a hard return before typing the INPUT tag for their submit button.

When I take your code and do the same, changing:

Code:
<input type="Text" name="message" size="15"><input type="submit" name="submit" value="Enviar">

...to:

Code:
<input type="Text" name="message" size="15">
<input type="submit" name="submit" value="Enviar">

...I get the space you desire.

'hope that helps!

--Dave
 
It might be safer to use:
Code:
&nbsp;
...where you want a space to appear. This causes a non-breaking space character.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top