bc_dyn_cell2.html 789 B

123456789101112131415161718192021222324
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
  2. <head><title>CSS 2.1 Test Suite: border collapse dynamic change to cell color</title>
  3. <link rel="author" title="Bernd Mielke" href="mailto:bmlk@gmx.de" />
  4. <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#collapsing-borders" />
  5. <meta name="flags" content="dom" />
  6. <script>
  7. function doTest(){
  8. var t1 =document.getElementById('target');
  9. t1.style.borderColor="yellow";
  10. }
  11. </script>
  12. <style>
  13. td { border: 10px green solid;}
  14. table {margin: 30px}
  15. </style>
  16. </head>
  17. <body onload="doTest()";>
  18. <table style="border-collapse:collapse">
  19. <tr><td>c11</td><td>c12</td><td>c13</td></tr>
  20. <tr><td>c21</td><td id="target" style="border-width:11px">c22</td><td>c23</td></tr>
  21. <tr><td>c31</td><td>c32</td><td>c33</td></tr>
  22. </table>