Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset=utf-8>
<title>CSS writing-mode reference</title>
<style>
table { margin: 10px; }
td { background: green; padding: 10px 20px 30px 40px; }
div { width: 20px; height: 40px; background: blue; }
</style>
<p>All five green squares should look the same, with a blue rectangle towards the upper right.</p>
<table>
<td><div></div></td>
</table>
<table>
<td><div></div></td>
</table>
<table>
<td><div></div></td>
</table>
<table>
<td><div></div></td>
</table>
<table>
<td><div></div></td>
</table>