1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <title>CSS Test: The anonymous block box around a table and the table 'margin-bottom' property</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#model">
7 <meta name="flags" content="">
8 <meta name="assert" content="The 'margin-bottom' property of a table is actually applied to its anonymous block box.">
9 <style type="text/css">
10 #container
11 {
12 border-bottom: 5px solid black;
13 width: 200px;
14 }
15 table
16 {
17 border-spacing: 0;
18 margin-bottom: 100px;
19 }
20 caption
21 {
22 background: blue;
23 caption-side: bottom;
24 color: blue;
25 }
26 td
27 {
28 background: orange;
29 color: orange;
30 }
31 </style>
32 </head>
33 <body>
34 <p>Test passes if the blue box is directly beneath the orange box and neither box is touching the black line.</p>
35 <div id="container">
36 <table>
37 <caption>Filler Text Filler Text</caption>
38 <tr>
39 <td>Filler Text Filler Text</td>
40 </tr>
41 </table>
42 </div>
43 </body>
44 </html>