How to code the label tag for XHTML
- by oReiLLy
Label tag coding style.
Can I write my label tag like this.
<input type="text" name="lname" id="ln" />
<label for="ln">Last Name:</label>
Instead of like this.
<label for="ln">Last Name:</label>
<input type="text" name="lname" id="ln" />