contain-size-056-ref.html (682B)
1 <!DOCTYPE html> 2 3 <meta charset="UTF-8"> 4 5 <title>CSS Reference Test</title> 6 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> 8 9 <style> 10 table 11 { 12 width: 400px; 13 } 14 15 caption 16 { 17 border-top: orange solid 6px; 18 color: blue; 19 font-size: 32px; 20 } 21 22 span 23 { 24 bottom: 3px; 25 position: relative; 26 } 27 </style> 28 29 <p>Test passes if the words "Table caption" are below a thick orange line. Test fails if, instead of a thick orange line, there is an orange rectangle with the words "Table caption" in it. 30 31 <table> 32 <caption><span>Table caption</span></caption> 33 </table>