table-direction.html (533B)
1 <!DOCTYPE html> 2 <link rel="match" href="table-direction-ref.html"> 3 <title>Table direction</title> 4 5 <style> 6 table { 7 border-collapse: collapse; 8 } 9 10 td { 11 border: 2px solid black; 12 width: 20px; 13 height: 20px; 14 } 15 16 td.special { 17 border-left: 5px solid green; 18 border-right: 5px solid blue; 19 } 20 </style> 21 22 Normal table: 23 <table> 24 <tr> 25 <td></td> 26 <td class="special"></td> 27 </tr> 28 </table> 29 30 <hr> 31 32 RTL table: 33 <table style="direction: rtl"> 34 <tr> 35 <td></td> 36 <td class="special"></td> 37 </tr> 38 </table>