print.css 334 B

12345678910111213141516171819202122232425
  1. body {
  2. margin: 1em;
  3. background-color: #fff;
  4. }
  5. [dir="rtl"] body {
  6. direction: rtl;
  7. }
  8. th {
  9. text-align: left; /* LTR */
  10. color: #006;
  11. border-bottom: 1px solid #ccc;
  12. }
  13. [dir="rtl"] th {
  14. text-align: right;
  15. }
  16. tr:nth-child(odd) {
  17. background-color: #ddd;
  18. }
  19. tr:nth-child(even){
  20. background-color: #fff;
  21. }
  22. td {
  23. padding: 5px;
  24. }