blob: 2098b2e917710053b7d4d40a0f81ad20f8e1275b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<body style="overflow: hidden;">
The two rows below should look identical. In both, the spanning cells in columns 2-3 should consume as
much width as possible, while column 1 should be tiny.
<table border=2 height=100% style="-webkit-writing-mode: vertical-rl;">
<tr>
<td>1<td colspan=2>2-3
</tr>
<tr>
<td>1</td>
<td colspan=2 height=100%>2-3</td>
</tr>
</table>
</body>
|