이 테이블 행을 경계까지 가능 <tr>
하나 대신, 개별 셀에 테두리를주는 이동에 <td>
같은,
<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>
이것은 주어진 주위에 테두리를 제공 <tr>
하지만 개별 셀 주위에 테두리가 필요합니다.
<tr>
한 번에 국경을 넘길 수 있습니까 ?