In my css file I have defined a class with modifications to the td tagI use it in my <tr class="tdCSS"> tag becasue I want to apply borders to each TR (you can't do borders with the TR tag in CSS)I'm having a problem with the following:<tr class="tdCSS"> <td> <table>.......</table> <td></tr> The problem is that I have other td tags in the nested table that pick up the td formatting creating borders where I don't want them. I just want one border around the TR housing the table, not a border around every TD withing the table. Is there a way to make it so a TD tag in a DIV does not receive the formatting? Kinda like <td class="null"> (or any undefined class).My other option would be to just make each row a seperate table and just have one table appended to the next. I'd rather not do that. Sorry if this isn't clear.
2/22/2006 9:14:28 PM
Sigh, nevermind.Shoulda bumpped the class reference down to the actual td, not the tr.<tr><td class="tdCSS"><table>.......</table><td></tr>
2/22/2006 9:25:03 PM
you can do borders on the tr tagand take the table out of the td tag. you probably don't have a good enough reason to nest tableshttp://www.w3.org/TR/REC-CSS2/tables.html#borders[Edited on February 22, 2006 at 9:54 PM. Reason : .]
2/22/2006 9:48:49 PM
...
2/22/2006 9:51:37 PM