table-caption-horizontal-alignment-001.xht (1006B)
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: Horizontally aligning table caption content</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#caption-position" /> 7 <meta name="assert" content="Table caption content can be horizontally aligned with the 'text-align' property." /> 8 <style type="text/css"> 9 caption 10 { 11 border: 1px solid black; 12 text-align: right; 13 width: 200px; 14 } 15 </style> 16 </head> 17 <body> 18 <p>Test passes if the "Filler Text" below is on the right side of the box.</p> 19 <table> 20 <caption>Filler Text</caption> 21 <tr> 22 <td></td> 23 </tr> 24 </table> 25 </body> 26 </html>