Files
servo/tests/wpt/css-tests/css-flexbox-1_dev/html/reference/flexbox_rowspan-ref.htm

35 lines
488 B
HTML

<!DOCTYPE html>
<html><head><title>flexbox | flexcontainers in cells with rowspan</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<style>
table {
width: 600px;
table-layout: fixed;
border-spacing: 0;
}
td {
background: blue;
padding: 0;
}
div {
background: white;
height: 8em;
}
</style>
</head><body><table>
<tbody><tr>
<td rowspan="2">
<div></div>
</td>
<td>
<div></div>
</td>
</tr>
<tr>
<td>
<div></div>
</td>
</tr>
</tbody></table>
</body></html>