Return to Snippet

Revision: 11818
at February 19, 2009 16:25 by selfmadepsyche


Initial Code
<form>
<label for="name">Name</label>
<input id="name" name="name"><br>
<label for="address">Address</label>
<input id="address" name="address"><br>
<label for="city">City</label>
<input id="city" name="city"><br>
</form>
 
label,input {
display: block;
width: 150px;
float: left;
margin-bottom: 10px;
}
 
label {
text-align: right;
width: 75px;
padding-right: 20px;
}
 
br {
clear: left;
}

Initial URL


Initial Description


Initial Title
Tableless Forms

Initial Tags
css, html

Initial Language
HTML