blob: f5de2368f67c5e0cb63c89ce52b1f148ff363581 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html lang="en">
<head>
<title>Margin Collapsing: in flow (simple, block-inside-inline version)</title>
<style type="text/css">
table { border-spacing: 0; font-size: 50px; border: solid; background: orange; }
td { padding: 0; }
div { height: 1em; width: 1em; }
.a { background: lime; }
.b { background: yellow; }
/* column 1 */
.t1 .a { margin: 1em 0 1em; }
.t1 .b { margin: 1em 0 1em; }
/* column 2 */
.t2 .a { margin: 1em 0 1em; }
.t2 .b { margin: 0em 0 1em; }
/* column 3 */
.t3 .a { margin: 1em 0 0em; }
.t3 .b { margin: 1em 0 1em; }
/* column 4 */
.t4 .a { margin: 1em 0 2em; }
.t4 .b { margin: -1em 0 1em; }
/* column 5 */
.t5 .a { margin: 1em 0 -1em; }
.t5 .b { margin: 2em 0 1em; }
</style>
</head>
<body>
<p>The square should consist of exactly five equal bands, orange, lime, orange, yellow, orange.</p>
<table>
<tr>
<td class="t1">
<span><div class="a"></div></span>
<span><div class="b"></div></span>
</td>
<td class="t2">
<span><div class="a"></div></span>
<span><div class="b"></div></span>
</td>
<td class="t3">
<span><div class="a"></div></span>
<span><div class="b"></div></span>
</td>
<td class="t4">
<span><div class="a"></div></span>
<span><div class="b"></div></span>
</td>
<td class="t5">
<span><div class="a"></div></span>
<span><div class="b"></div></span>
</td>
</tr>
</table>
<p>This test is meaningless if you don't pass <a href="006.html#">test 006</a>.</p>
</body>
</html>