column-box-alignment-rtl-2-ref.html (523B)
1 <!doctype html> 2 <style> 3 * { 4 margin: 0 0; 5 padding: 0 0; 6 } 7 8 table { 9 border: 1px solid; 10 inline-size: 600px; 11 box-sizing: content-box; 12 font: 16px/1 sans-serif; 13 } 14 15 td { 16 width: 25%; 17 } 18 </style> 19 The first column should be aligned with the right side of the block and the second column should be to its direct left. 20 <table cellspacing=0 cellpadding=0 style="direction:rtl; text-align:right;"> 21 <tr> 22 <td>1st column</td> 23 <td>2nd column</td> 24 <td> </td> 25 <td> </td> 26 </tr> 27 </table>