One thing that is often overlooked about the much maligned table element is that if you lay it out in a consistent and logical manner as far as the width of the first row's cells and all of the table's contents go, and it isn't going to have its content's width changed markedly via scripting, you can use the:
Code:
selector_for_this_table {
table-layout:fixed;
}
style for it in your stylesheet. For an otherwise complex table, this greatly increases the speed at which it will load.

Originally Posted by
Tawni
<table id="content"> <-------u just gave your table a name, now in the style sheet you can change any number of things such as font, size, color, back ground etc even add a back ground image. And guess what becuse it is a class name it wont effect the other tables in your site .
This Gives you full control without CODe mess in yoiur html.
The concept is sound. However, you gave the table an id not a name (names won't help you style a table, or anything else using a stylesheet). And, it isn't a class name either. You would do that like so:
Code:
<table class="content">
Bookmarks