Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS alignment without using tables Reply To: CSS alignment without using tables

#242690
I.m.learning
Participant

Just use the html form element instead. Something like

<form>
First name: <input type=”text” name=”FirstName”><br>
Last name: <input type=”text” name=”LastName”><br>
<input type=”submit” value=”Submit”>
</form>