orthogonal-cell-001-ref.html (536B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 4 <title>CSS writing-mode reference</title> 5 6 <style> 7 table { margin: 10px; } 8 td { background: green; padding: 10px 20px 30px 40px; } 9 div { width: 20px; height: 40px; background: blue; } 10 </style> 11 12 <p>All five green squares should look the same, with a blue rectangle towards the upper right.</p> 13 14 <table> 15 <td><div></div></td> 16 </table> 17 18 <table> 19 <td><div></div></td> 20 </table> 21 22 <table> 23 <td><div></div></td> 24 </table> 25 26 <table> 27 <td><div></div></td> 28 </table> 29 30 <table> 31 <td><div></div></td> 32 </table>