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-left' 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-left' property of a table is actually applied to its anonymous block box.">
9 <style type="text/css">
10 div
11 {
12 border-left: 5px solid black;
13 height: 100px;
14 }
15 table
16 {
17 margin-left: 100px;
18 border-collapse: collapse;
19 }
20 caption
21 {
22 background: orange;
23 color: orange;
24 }
25 td
26 {
27 background: blue;
28 color: blue;
29 }
30 </style>
31 </head>
32 <body>
33 <p>Test passes if the blue box is directly beneath the orange box and neither box is touching the black line.</p>
34 <div>
35 <table>
36 <caption>Filler TextFiller Text</caption>
37 <tr>
38 <td>Filler TextFiller Text</td>
39 </tr>
40 </table>
41 </div>
42 </body>
43 </html>