column-box-alignment-rtl.html 541 B

1234567891011121314151617181920212223242526272829303132
  1. <!doctype html>
  2. <style>
  3. * {
  4. margin: 0 0;
  5. padding: 0 0;
  6. }
  7. div {
  8. column-gap: 0;
  9. -moz-column-gap: 0;
  10. column-count: 4;
  11. -moz-column-count: 4;
  12. -webkit-column-count: 4;
  13. -o-column-count: 4;
  14. -ms-column-count: 4;
  15. }
  16. /* cosmetics */
  17. div {
  18. border: 1px solid;
  19. }
  20. td {
  21. width: 25%;
  22. }
  23. </style>
  24. The first column should be aligned with the right side of the block and the second column should be to its direct left.
  25. <div style="direction:rtl; text-align:right;">
  26. <p>1st column</p>
  27. <p>2nd column</p>
  28. </div>