Possible Duplicate:
Should I put input tag inside label tag?
Is it valid to have an input element within a label element to associate the input with the label? Example:
<label>Email Address: <input name="email" type="text" /></label>
Will major browsers associate the label and input control, without the label's for attribute specified?
I've seen it done this way several times, but was wondering if this is kosher HTML.