table-caption-scroll.html (1388B)
1 <!DOCTYPE HTML> 2 <html><head> 3 <meta charset="utf-8"> 4 <title>Testing table captions with overflow:auto/scroll/hidden</title> 5 <style type="text/css"> 6 7 html,body { 8 color:black; background-color:white; font-size:16px; padding:0; margin:0; height:100%; 9 } 10 11 caption { border:1px solid; overflow:auto; height:100px; } 12 .s { overflow:scroll; } 13 .h { overflow:hidden; } 14 </style> 15 </head> 16 <body> 17 18 <table border="0" cellspacing="0" cellpadding="0"> 19 <caption>0<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption> 20 <tr><td>TTTTTTTTTT</td></tr> 21 </table> 22 23 <table border="0" cellspacing="0" cellpadding="0"> 24 <caption>00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption> 25 <tr><td>T</td></tr> 26 </table> 27 28 <table border="0" cellspacing="0" cellpadding="0"> 29 <caption class="s">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption> 30 <tr><td>T</td></tr> 31 </table> 32 33 <table border="0" cellspacing="0" cellpadding="0"> 34 <caption class="s">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption> 35 <tr><td>TTTTTTTTTT</td></tr> 36 </table> 37 38 <table border="0" cellspacing="0" cellpadding="0"> 39 <caption class="h">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption> 40 <tr><td>T</td></tr> 41 </table> 42 43 <table border="0" cellspacing="0" cellpadding="0"> 44 <caption class="h">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption> 45 <tr><td>TTTTTTTTTT</td></tr> 46 </table> 47 48 </body> 49 </html>