377603-1.html (560B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <head> 5 <style> 6 table table 7 { border-collapse: collapse; border-style: solid; border-width: 10px } 8 </style> 9 </head> 10 </head> 11 <body> 12 <table><tr> 13 <td style="border: 0px solid green; color: red"> 14 <table style="border-color: inherit"> 15 <tr><td></td></tr> 16 </table> 17 <table id="test"> 18 <tr><td></td></tr> 19 </table> 20 <script> 21 document.body.offsetWidth; 22 document.getElementById("test").style.borderColor = "inherit"; 23 </script> 24 </td> 25 </tr></table> 26 </body> 27 </html>