table-caption-scroll.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. html,body {
  7. color:black; background-color:white; font-size:16px; padding:0; margin:0; height:100%;
  8. }
  9. caption { border:1px solid; overflow:auto; height:100px; }
  10. .s { overflow:scroll; }
  11. .h { overflow:hidden; }
  12. </style>
  13. </head>
  14. <body>
  15. <table border="0" cellspacing="0" cellpadding="0">
  16. <caption>0<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
  17. <tr><td>TTTTTTTTTT</td></tr>
  18. </table>
  19. <table border="0" cellspacing="0" cellpadding="0">
  20. <caption>00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
  21. <tr><td>T</td></tr>
  22. </table>
  23. <table border="0" cellspacing="0" cellpadding="0">
  24. <caption class="s">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. <table border="0" cellspacing="0" cellpadding="0">
  28. <caption class="s">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
  29. <tr><td>TTTTTTTTTT</td></tr>
  30. </table>
  31. <table border="0" cellspacing="0" cellpadding="0">
  32. <caption class="h">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
  33. <tr><td>T</td></tr>
  34. </table>
  35. <table border="0" cellspacing="0" cellpadding="0">
  36. <caption class="h">00000<br>1<br>2<br>3<br>4<br>5<br>6<br>7<br>8<br>9</caption>
  37. <tr><td>TTTTTTTTTT</td></tr>
  38. </table>
  39. </body>
  40. </html>