เป็นไปได้ไหมที่จะขอบแถวตาราง<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>เพียงครั้งเดียวได้หรือไม่?