Ajaxy Table

Can someone show me the markup to something like this?

I dont need the css. Just the markup. I’m a newb with tables. : (

Untested but I see no reason why it shouldn’t work.

<table>
<thead>
<tr>
<th>Shape</th>
<th>Carat</th>
<th>Cut</th>
<th>Color</th>
<th>Clarity</th>
<th>Date</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Round</td>
<td>0.30</td>
<td>Good</td>
<td>D</td>
<td>Sli</td>
<td>Jan 27</td>
<td>$770</td>
<td><img alt="details" /></td>
</tr>
</tbody>
</table>

You have an extra cell for the Details image though.

That’s pimp thanks Rye! =)

:rofl:

You’re welcome :).

Can someone take a look over this for me? I need to style it with CSS, but I dont know how? God, I suck at tables. : (

The grayish background can be put on the <thead> repeated across the x axis.

The text needs vertical-align on the th/td. The font you can do yourself…colors yourself…there really isn’t that much that we can do for you :slight_smile: