1
給定此代碼,我該如何實現只填充表格「a」而不填充表格「a」和表格「b」的樣式?樣式表格的單元格沒有兒童表格的樣式單元格
<html>
<style type="text/css">
table.a td {background-color:green;}
table.b td {background-color:red;}
table {width:100%;}
table.a tr td {padding:16px;} /*styles cells of table a and b*/
</style>
</html>
<body>
<table class="a">
<tr>
<td> </td>
<td>
<table class="b">
<tr>
<td>foo</td>
<td>foo2</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
該表中沒有`tbody`元素。 – BoltClock 2011-01-27 22:55:54