caption-side-002

Caption-side set to 'bottom'

WeasyPrint

This browser

Assertion
A caption with a 'caption-side' value of 'bottom' will be positioned below its table.

Source

 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: Caption-side set to 'bottom'</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#propdef-caption-side">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#caption-position">
 8         <meta name="flags" content="">
 9         <meta name="assert" content="A caption with a 'caption-side' value of 'bottom' will be positioned below its table.">
10         <style type="text/css">
11             table
12             {
13                 background: black;
14             }
15             caption
16             {
17                 caption-side: bottom;
18             }
19         </style>
20     </head>
21     <body>
22         <p>Test passes if the "Filler Text" appears below the box.</p>
23         <table>
24             <caption>Filler&nbsp;Text</caption>
25             <tr>
26                 <td>XXXXX</td>
27             </tr>
28         </table>
29     </body>
30 </html>