up vote 7 down vote favorite
3
share [g+] share [fb]

I'm wondering whether it's acceptable to use tables for forms.

Strictly speaking, name/value pairs are tabular data, aren't they? And a form is just a user customisable set of name/value pairs. So is it right to use tables in this case? Or should I use divs styled with CSS?

link|improve this question

80% accept rate
1  
4  
I once used a table to lay out my form and I couldn't get the HTML to compile. – JMP Sep 8 '09 at 18:33
I once used a table to lay out my form and I couldn't get the HTML to compile. Come again? What? – voyager Sep 8 '09 at 18:36
1  
Not quite a duplicate. I'm asking what's right, not what's easiest. – Eric Sep 8 '09 at 18:38
1  
Nathan Long, th > label | td > input is perfectly semantically correct, in fact it may be more correct semantically than any other combination. But then, HTML semantics are rather loose so once you're in "what's more correct" territory, it's not really worth debating anymore... in my opinion. – eyelidlessness Sep 10 '09 at 4:38
show 2 more comments
feedback

11 Answers

up vote 11 down vote accepted

Both are correct.

I preffer using some div/li, as that allows me to make some different layouts, but tables for forms are not frowned upon.

Actually, by default, Django gives you table formated forms.

link|improve this answer
There are plenty of semantics purists that will disagree with this. The question of how to semantically mark up forms is still very much unsettled, but afaik forms aren't strictly considered to be tabular data. There really is no right answer to this, but certainly tables are not the most highly regarded choice, as opposed to lists. Some argue that paragraphs are better - it's really hard to say. "What Django does" adds very little weight to this argument. People will use forms for layout because its easier and, argue that it's semantic when they know it truly isn't. – Madmartigan Apr 19 '11 at 4:21
Wow I didn't realize how old this was! I got dumped here from a recent post, thought this was current. – Madmartigan Apr 19 '11 at 4:31
feedback

Try fieldsets

I prefer to break up the fields into logical <fieldset>s with one <legend> each, because:

  • The code is less cluttered
  • The default formatting is user-friendly (I especially like how the legend displays)
  • It's easy to style with CSS

See this article for a nice tutorial. Here's a code example:

<form>
  <fieldset>
    <legend>Wombat Statistics</legend>
    <ol>
      <li>
        <label for="punchstrength">Punch Strength</label>
        <input id="punchstrength" />
      </li>
      <li>
        <label for="beverage">Favorite Beverage</label>
        <input id="beverage" />
      </li>
    </ol>
  </fieldset>
  <fieldset>
    <legend>Questions That Are Too Personal</legend>
    <ol>
      <li>
        <label for="creditcard">What is your credit card number?</label>
        <input id="creditcard" />
      </li>
      <li>
        <label for="gullibility">Did you actually fill that in?</label>
        <input id="gullibility" />
      </li>
    </ol>
  </fieldset>
</form>

(Note: the "label for" thing lets you click that label to move focus to the input specified.)

link|improve this answer
Agree very much. Fieldsets look more like paper forms - at least, as much as possible - with the legend, etc, in less markup than is required for tables. – MattBelanger Sep 8 '09 at 19:49
3  
+ 1 for fieldsets + labels. Semantic HTML is really simple, and in case of labels for= add usability even to the worst browsers out there. – Residuum Sep 8 '09 at 19:49
feedback

A form isn't tabular data.

It's so easy to lay out form elements with CSS, I don't see any value worth obfuscating the markup with tables. Personally, I find that laying out forms with CSS is easier than using tables at this point. For example:

HTML:

<fieldset>
  <label for="FirstName">First Name</label>
  <input type="text" id="FirstName" />

  <label for="LastName">Last Name</label>
  <input type="text" id="LastName" />

  <label for="Age">Age:</label>
  <select id="Age">
    <option>18-24</option>
    <option>25-50</option>
    <option>51-old</option>
  </select>
</fieldset>

CSS:

fieldset {
  overflow: hidden;
  width: 400px;
}

label {
  clear: both;
  float: right;
  padding-right: 10px;
  width: 100px;
}

input, select {
  float: left;
}

Using simple variations on that theme, you can make great-looking, accessible forms that are actually easier to work with than tables anyway. I've used that basic approach and ramped it up to some fairly complex, multi-column data entry forms too, no sweat.

link|improve this answer
1  
+ 1 for semantic HTML. – Residuum Sep 8 '09 at 19:51
1  
A form is tabular. And form fields represent variable data. – eyelidlessness Sep 10 '09 at 5:53
1  
@eyelidlessness: A form is tabular - that completely depends on the data in the form. You can't just thow all forms into one barrel and say Form === Table – Madmartigan Apr 19 '11 at 4:28
@Madmartigan, I'm struggling to come up with a use case where a form would not be tabular. Can you suggest any? – eyelidlessness Apr 19 '11 at 17:17
The problem is that all data can be considered "tabular", ie it can "go in a spreadheet". But this doesn't mean that on the web we are forced to mark it up as such when better options are available. How about sending an email? Would you really consider that form to be tablular data? – Madmartigan Apr 19 '11 at 18:12
show 3 more comments
feedback

You can use tables. Simple as that.

link|improve this answer
feedback

It's important to use labels with the 'for' attribute for screen readers (for usability).

That is why I use fieldsets

link|improve this answer
2  
1. The for attribute also provides usability improvements for graphical clients. 2. Fieldsets are not required for label[for]. 3. Using tables does not preclude using fieldsets. – eyelidlessness Sep 10 '09 at 4:57
feedback

Yes

Yes, you may use tables. Div's are supposed to replace tables for page-level layout, but not for, well, tables. Go ahead and use them within pages whenever they solve your problem.

link|improve this answer
3  
Is it acceptable? Sure, in that it functions. However, this is not what tables are supposed to be for. A form is not a table. – ryeguy Sep 8 '09 at 18:30
4  
Most of my forms have a column for labels followed by a column of input fields. – David Sep 8 '09 at 18:31
We may be in general agreement here. I mean, I don't think most forms should be tables, only ones with table-like appearance. – DigitalRoss Sep 8 '09 at 18:33
1  
If forms are not tabular, what are they? Just look at a 1040 tax form. It's a table. – jmucchiello Sep 8 '09 at 19:12
Forms can contain tabular data, it doens't mean "Forms are tables"... – Madmartigan Apr 19 '11 at 4:25
feedback

Eric, I would agree with you that form data is tabular data and semantically can live inside a table.

This is the method I use for simple data entry screens.

I wouldn't generally use divs, but possibly an ordered list

<ol>...</ol>

as the form is an ordered list of items also. I find this method a lot hard to style however.

You'll probably get 50/50 split in answers....

link|improve this answer
Why an ordered list? Wouldn't a <ul> make more sense? – jmucchiello Sep 8 '09 at 19:10
Yes, I guess a <ul> would make just as much sense, I chose ordered as I guess an input form has some specific order to it (or could have). I'm not sure it makes MORE sense, but maybe as much sense. It's basically and either/or situation. – RR. Sep 9 '09 at 8:58
feedback

Some people will say yes, some no.

Here's a way for you to decide: If it truly contains tabular data, then it should, at least according to WCAG, have a summary attribute. The summary attribute should describe the purpose and structure of the table for the benefit of screen reader users. Can you write such an attribute? If so, then you should do so, and include it on your table. If you can't, then it probably isn't a really a table and you should look for another way of laying out your form.

link|improve this answer
feedback

I never understood why you would use an ordered or unordered list for forms when a definition list seems more semantically appropriate:

<fieldset>
  <dl>
    <dt><label for="definition">Definition:</label></dt>
    <dd><input type="text" name="definition" /></dd>
  </dl>
</fieldset>

They can be a wee bit trickier to wrangle format-wise, but it always made a lot more sense to me than lists or tables for the vast majority of forms.

Having said that, tables don't seem inappropriate to me for editable tabular data.

link|improve this answer
feedback

If you're looking for "css purity", you should use something like this:

<form action="http://localhost/Zoleris/" method="post" accept-charset="utf-8">
    <ul class="form">
      <li>
        <label for="username">Username</label>
        <input type="text" id="username" name="username">
      </li>

      <li>
        <label for="password">Password</label>
        <input type="password" id="password" name="password">
      </li>

      <li>
        <input type="checkbox" id="remember_me" name="remember_me" >
        <label class="checkbox" for="remember_me">Remember my username</label>
      </li>

      <li>
        <a href="forgot.php">Forgot your password?</a>
      </li>

      <li>
        <button type="submit" id="btnLogin" name="btnLogin" class="button positive" style="float:right"><img src="tick.png">Login</button>
        <button type="submit" id="btnRegister" name="btnRegister" style="float: left"><img src="cross.png">I need an account!</button>
      </li>
    </ul>
</form>
link|improve this answer
You are missing a <fieldset> :) – voyager Oct 20 '09 at 14:02
feedback

you can use whatever you want, it just that it is a new standard for making the layout of the html forms, and it's kinda like a rule not use table tags for design, but it's still ok to use tables for displaying a table of data (grid)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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