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

Should I still be using tables anyway?

The table code I'd be replacing is:

<table>
    <tr>
        <td>Name</td><td>Value</td>
    </tr>
    ...
</table>

From what I've been reading I should have something like

<label class="name">Name</label><label class="value">Value</value><br />
...

Ideas and links to online samples greatly appreciated. I'm a developer way out of my design depth.

EDIT: My need is to be able to both to display the data to a user and edit the values in a separate (but near identical) form.

link|improve this question

79% accept rate
Can you explain what kind of page that is? E.g. is it a form, or do you have data which needs to be displayed in a "table"? ;) – Till Sep 14 '08 at 14:18
Good idea, I'll edit now. – IainMH Sep 14 '08 at 14:21
The main title is misleading, it would be good if someone could edit to reflect the fact that IainMH was talking about the layout of form fields. – andyuk Sep 14 '08 at 22:13
feedback

7 Answers

up vote 3 down vote accepted

Check out this article: Tableless forms.

link|improve this answer
I dont' know why you've been voted down. It's a perfect answer to my question. :-/ – IainMH Sep 14 '08 at 14:26
If fact, I'm going to accept it. That'll learn em. – IainMH Sep 14 '08 at 14:29
Notice that the article emulates fixed width table. It is usually OK, but there are caveats. For example, long name will not stretch your name pseudo column. Or, if user changes font size (for readability) he may run out of space as well. – buti-oxa Sep 14 '08 at 17:35
feedback

I think that definition lists are pretty close semantically to name/value pairs.

<dl>
    <dt>Name</dt>
    <dd>Value</dd>
</dl>

Definition lists - misused or misunderstood?

link|improve this answer
The will indent the value, and make it on a new line Name Value – Fire Lancer Sep 14 '08 at 14:22
That depends on the stylesheet. Take a look at the link in my answer and see for yourself. – Espo Sep 14 '08 at 14:24
Like Espo said, definition lists can be styled in any way you want. You can easily override the default newline/indentation styling. – macbirdie Sep 14 '08 at 14:26
feedback

I think tables are best used for tabular data, which it seems you have there.

If you do not want to use tables, the best thing would be to use definition lists(<dl> and <dt>). Here is how to style them to look like your old <td> layout.

http://www.maxdesign.com.au/presentation/definition/dl-table-display.htm

link|improve this answer
feedback

It's perfectly reasonable to use tables for what seems to be tabular data.

link|improve this answer
But it sort of isn't a table. In ASP.NET webforms, I suppose it could be the difference between GridView and DetailsView. – IainMH Sep 14 '08 at 14:36
feedback

If I'm writing a form I usually use this:

<form ... class="editing">
    <div class="field">
        <label>Label</label>
        <span class="edit"><input type="text" value="Value" ... /></span>
        <span class="view">Value</span>
    </div>
    ...
</form>

Then in my css:

.editing .view, .viewing .edit { display: none }
.editing .edit, .editing .view { display: inline }

Then with a little JavaScript I can swap the class of the form from editing to viewing.

I mention this approach since you wanted to display and edit the data with nearly the same layout and this is a way of doing it.

link|improve this answer
feedback

Like macbirdie I'd be inclined to mark data like this up as a definition list unless the content of the existing table could be judged to actually be tabular content.

I'd avoid using the label tag in the way you propose. Take a look at explaination of the label tag @ http://www.w3schools.com/tags/tag_label.asp - it's really intended to allow you to focus on its associated control. Also avoid using generic divs and spans as from a semantic point of view they're weak.

If you're display multiple name-value pairs on one screen, but editing only one on an edit screen, I'd use a table on the former screen, and a definition list on the latter.

link|improve this answer
feedback

use the float: property eg: css:

  .left
  {
  float:left;
  padding-right:20px
  }

html:

<div class="left">
 Name<br/>
 AnotherName
</div>
<div>
 Value<br />
 AnotherValue
</div>
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.