Not that I'm aware of. But you can do this
<style type="text/css">
.specialtable td {
border-bottom: 1px solid black;
}
</style>
<table width=600px cellSpacing=2 cellPadding=2 class="specialtable">
...
</table>
This will ensure that only this specific table's <td/>
elements will be styled according to your needs. Note: according to the w3c specs, <style/>
is only allowed within the <head/>
element of your document. But in many browsers, it still works if you put it anywhere in the <body/>
. Since you're looking for a kind of hack, this may be a viable solution for you