Forum Moderators: mack
To help users determine which column is which, I have been using title="" in the table's <td> code, thus:
<td title="total sales this quarter">$123,456</td>
<td title="average sales per quarter, 2004">$98,765</td>
This causes a tooltip message to appear when the user places the mouse over that particular table cell.
Since the title is the same for every cell in a given column, I am wondering if there is some way to put these titles into a single external CSS file, something like this:
____________________
CSS file:
td.tot{title:"total sales this quarter";}
td.avg{title:"average sales per quarter, 2004";}
HTML file:
<td class="tot">$123,456</td>
<td class="avg">$98,765</td>
____________________
I have searched on-line and experimented and can't find anything, so I am guessing this is not possible. Can anyone tell me how to do this, if it can be done?
Thanks,