chris leeds said:
you sure can. it'd look like this:
<td class="your class">
then anything in the cell will take the attributes you specified.
Note that "your class" shouldn't have a space in it.
If you're only using CSS in this one spot, you may wan to do it Inline
(within the HTML). If so, it would look like this:
<td style="font-weight: bold;">stuff in the cell</td>
Otherwise, if you do embedded styles or an external file, your CSS statement
would look like:
#yourclass {
font-weight: bold;
}
or
..yourclass {
font-weight: bold;
}
And the HTML would _almost_ look like Chris suggested:
<td id="yourclass">stuff in the cell</td>
or
<td class="yourclass">stuff in the cell</td>
You can use whatever name you want instead of "yourclass". The difference
between the #yourclass and .yourclass is that the # one is referred to as an
_id_ and can only be used once within your page whereas the . one is called
a _class_ and can be used multiple times within your document.
Like I said earlier, if it's just one cell, inline would be the easiest.
Good luck!