如何为两个表格的表格单元格制作两种不同的样式,其中一个单元格在另一个表格中?
我有两种 CSS 样式:
table.style1 { /* any styles */}
table.style1 td { /* any styles */}
和
table.style2 { /* any styles */}
table.style2 td { /* any styles */ }
在代码中我有这样的感觉:
<table class="style1">
<tr>
<td>
<table class="style2">
<tr><td>bla bla<td></tr>
</table>
</td>
<tr>
</table>
结果是 -<td>
第二个表格(带有样式2)中的所有表格单元格都带有样式1......!
当我在桌子里面有桌子时,如何制作两个不同的css stile?