Ist es möglich, eine Tabellenzeile auf einmal zu begrenzen <tr>
, anstatt einzelnen Zellen einen Rand zu geben, <td>
wie z.
<table cellpadding="0" cellspacing="0" width="100%" style="border: 1px;" rules="none">
<tbody>
<tr>
<th style="width: 96px;">Column 1</th>
<th style="width: 96px;">Column 2</th>
<th style="width: 96px;">Column 3</th>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td style="border-left: thin solid; border-top: thin solid; border-bottom: thin solid;"> </td>
<td style="border-top: thin solid; border-bottom: thin solid;"> </td>
<td style="border-top: thin solid; border-bottom: thin solid; border-right: thin solid;"> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
Dies gibt einen Rand um das Gegebene <tr>
, erfordert jedoch einen Rand um einzelne Zellen.
Können wir <tr>
nur auf einmal eine Grenze setzen ?