Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently, my form looks like this:

<label for="comment">Comment:</label>
<textarea name="comment" id="comment" rows="6" cols="20"></textarea><br />

<label for="checker">Check the box:</label>
<input type="checkbox" name="checker" id="checker" value="ON" />

Should these then be converted to <dt>/<dd> since they're somewhat definition lists, or am I taking this too far?

share|improve this question
1  
An argument can be made that a form is tabular, a definition list, or just a plain list. Get rid of the <br/> tag; that's not semantic. – StackOverflowNewbie May 9 '12 at 22:44

5 Answers

You would be taking it too far unless there is another reason to add definitions to your form. Definitions are not semantically applicable to forms.

share|improve this answer

It's absolutely fine as it is, leave it be if it works.

If you need surrounding containers around the label/input pairs, add uls and lis. I think they are the semantically more correct choice here.

share|improve this answer

I tend to use fieldsets to group related fields as appropriate, and then a OL around them. Each LI has a label and an input. They aren't really definitions, more a list of things.

share|improve this answer

Unless you expect this HTML to be consumed by some particular tool or other automated service, DL/DT is not appropriate. A form is not a glossary.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.