caption-side-003.xht (1124B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Caption-side set to 'inherit'</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="assert" content="A caption can inherit its 'caption-side' behavior from its table parent." /> 9 <style type="text/css"> 10 table 11 { 12 background: black; 13 caption-side: bottom; 14 } 15 caption 16 { 17 caption-side: inherit; 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 Text</caption> 25 <tr> 26 <td>XXXXX</td> 27 </tr> 28 </table> 29 </body> 30 </html>