column-box-alignment-rtl-ref.html 478 B

123456789101112131415161718192021222324252627
  1. <!doctype html>
  2. <style>
  3. * {
  4. margin: 0 0;
  5. padding: 0 0;
  6. }
  7. /* cosmetics */
  8. table {
  9. border: 1px solid;
  10. width: 100%;
  11. }
  12. td {
  13. width: 25%;
  14. }
  15. </style>
  16. The first column should be aligned with the right side of the block and the second column should be to its direct left.
  17. <table cellspacing=0 cellpadding=0 style="direction:rtl; text-align:right;">
  18. <tr>
  19. <td>1st column</td>
  20. <td>2nd column</td>
  21. <td>&nbsp;</td>
  22. <td>&nbsp;</td>
  23. </tr>
  24. </table>