vote up 6 vote down star
4

I've come across a few examples recently that do things like:

<dl>
  <dt>Full Name:</dt>
  <dd><input type="text" name="fullname"></dd>
  <dt>Email Address:</dt>
  <dd><input type="text" name="email"></dd>
</dl>

for doing HTML forms. Why is that? What is the advantage over using tables?

flag

9 Answers

vote up 25 vote down check

I guess it's up to you to determine the semantics, but in my opinion:

Rather than a definition list, form-related properties should be used.

<form>
  <label for="fullname">Full Name:</label>
  <input type="text" name="fullname" id="fullname">
  <label for="email">Email Address:</label>
  <input type="text" name="email" id="email">
</form>

The "for" attribute in the <label> tag should reference the "id" attribute of a <input> tag. Note that when labels are associated with fields, clicking the label will put the associated field in focus.

You can also use tags like <fieldset> to cluster sections of a form together and <legend> to caption a fieldset.

link|flag
1  
You can also put the input inside the label – nickf Feb 6 at 7:24
1  
+1 for being the only person to suggest the logical way to do this. A "table" is generally not semantically accurate or very flexible from a layout perspective. A "definition list" is closer but still a bit of a stretch. But "inputs" and "labels"? That's exactly what the things are! – Chuck Feb 6 at 8:00
For a lot of forms, I believe a table /may/ be semantically appropriate. Not in all instances though. And as Chuck said, tables are not very flexible from a layout perspective. If you're going to use tables for your form, make sure it is semantically appropriate and make sure to use labels, too. – sjstrutt Feb 6 at 8:36
nickf: Yes, but it's more flexible to don't nest them, because you can then do label{display:block;} to get labels above fields, or label{clear:both;float:left;width:300px;} to get a tabular look. – svinto Feb 6 at 9:39
svinto: your second example is the approach I´m normally using. The problem is that you´re limited in the width of your labels; adding a long label or increasing the text size can lead to unwanted results and that´s where the table solution actually is more flexible. – jeroen Feb 6 at 14:05
show 2 more comments
vote up 6 vote down

Definition lists have semantic meaning. They are for listing terms (<dt>) and their associated definitions (<dd>). Therefore in this case a <dl> portrays the semantic meaning of the content more accurately than a table.

link|flag
vote up 6 vote down

This is a subset of the issue of semantics vs formatting. A definition list says what they are, a list of related key/value attributes, but does not say how to display it. A table says more about layout and how to display the data then what the data inside is. It limits how the list can be formatted both by overspecifying the format and by underspecifying what it is.

HTML, historically, has mixed up semantics with formatting. Font tags and tables being the worst examples. The move to CSS for the formatting and the stripping of a lot of the pure formatting tags out of XHTML restores, somewhat, the separation of meaning from formatting. By separating formatting into CSS you can display the same HTML in many different ways reformatting it for a wide browser, a small mobile browser, printing, plain text, etc...

For enlightenment, visit the CSS Zen Garden.

link|flag
I would add, that it adds intent, relationship. Later, a search engine could consume this page and discover the above code and know it's all related. – Charles Conway Feb 6 at 7:09
vote up 5 vote down

I've succesfully used the technique outlined in this article several times.

I agree with sjstrutt that you should use form reated tags like label and form in you forms, but the HTML outlined in his example, will often lack some code you can use as "hooks" for styling your form with CSS.

As a consequense of this I markup my forms like this:

<form name="LoginForm" action="thispage">
    <fieldset>
        <legend>Form header</legend>
        <ul>
            <li>
                <label for="UserName">Username: </label>
                <input id="UserName" name="UserName" type="text" />
            </li>
            <li>
                <label for="Password">Password: </label>
                <input id="Password" name="Password" type="text" />
            </li>
        </ul>
    </fieldset>
    <fieldset class="buttons">
        <input class="submit" type="submit" value="Login" />
    </fieldset>
</form>

This approach leaves me with a comprehensible set of tags, which contains enough hooks to style the forms in a lot of different ways.

Regards Jesper Hauge

link|flag
I markup my forms in exactly the same way. – Toytown Mafia Feb 6 at 9:28
The only problem I have found with this approach is sometimes you need to put content in between 2 form elements which doesn't relate to either. Semantically, you should close the unordered list and start again, but then you may have a list consisting of only one child element. – alex Nov 5 at 6:04
vote up 2 vote down

Part of the reason for using <dl> for marking up the form is that it is much easier to do fancy CSS layout tricks with a <dl> than a <table>. The other part is that it better reflects the semantics of the form (a list of label/field pairs) than a table would.

Ok, table hate is part of it too.

link|flag
vote up 1 vote down

In this case, labels and inputs are your semantic meaning and they stand on their own.

Imagine you had to read the web page, out load, to a blind person. You wouldn't say "Okay, I have a list of definitions here. The first term is 'name'." Instead, you'd probably say "Okay we have a form here and it looks like the there's a set of fields, the first input is labeled 'name'."

This is why the semantic web is important. It allows the content of the page to represent itself accurately to both humans and technology. For example, there are many browser plugins that help people quickly fill out web forms with their standard information (name, phone number, etc). These rarely work well if inputs don't have associated labels.

Hope that helps.

link|flag
vote up 0 vote down

It's probably to sate all those people that hate tables, the types that believe firmly that tables are for tabular data only, not forms or layout.

Seriously, it extends the "separation of duties" meme that's a basic part of XML, HTML, CSS and so on. By separation of duties, I mean "one part is responsible for data, the other for layout". I gather it's easier to control the actual layout with CSS than to have CSS and tables fight each other :-)

link|flag
vote up 0 vote down

Sometimes, a definition list simply presents the information in the way that's desired, whilst a table does not. Personally, I would probably not use a definition list for a form, unless it suits the style of the site.

link|flag
vote up 0 vote down

Definition lists are almost never used because semantically speaking they rarely show up on the internet.

In your case the correct code has been posted:

<form>
    <label for="fullname">Full Name:</label>
    <input type="text" name="fullname" id="fullname">
    <label for="email">Email Address:</label>
    <input type="text" name="email" id="email">
</form>

You are creating a form with inputs and labels for said inputs, you are not setting forth a list of words and defining them.

If you are doing some kind of help section then definition lists would be appropriate, e.g.:

<dl>
    <dt>HTML</dt>
    <dd>Hypertext Markup Language</dd>
    <dt>CSS</dt>
    <dd>Cascade Stylesheets</dd>
    <dt>PHP</dt>
    <dd>Hypertext Preprocessor</dd>
</dl>
link|flag
Term: First Name Definition: Please supply one in the box provided. – J Wynia Jun 18 at 12:55
Whaaaaaaaat...? – Andrew G. Johnson Jun 18 at 13:50

Your Answer

Get an OpenID
or

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