col-paint-vrl-rtl.html (572B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#drawing-cell-backgrounds"> 3 <link rel="match" href="col-paint-vrl-rtl-ref.html"> 4 <style> 5 table { border: solid 2px; border-spacing: 5px; padding: 5px; } 6 col { background: linear-gradient(30deg, red 50%, blue 50%); } 7 </style> 8 <table style="writing-mode: vertical-rl; direction: rtl;"> 9 <col style="height: 50px;"></col> 10 <col style="height: 100px;"></col> 11 <tr style="width: 100px;"> 12 <td></td> 13 <td></td> 14 </tr> 15 <tr style="width: 50px;"> 16 <td></td> 17 <td></td> 18 </tr> 19 </table>