<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS inheritance: content with tables</title>
  <style type="text/css">
    .control td:after { content: 'PASSED)'; }
    .test1 td { content: 'PASSED'; }
    .test1 td:after { content: inherit; color: green; }
    .test2 tr { content: 'PASSED'; }
    .test2 td { content: inherit; }
    .test2 td:after { content: inherit; color: green; }
  </style>
 </head>
 <body>
   <table class="control"><tr><td>(Control: </td></tr></table>
   <table class="test1"><tr><td>Test 1 has: </td></tr></table>
   <table class="test2"><tr><td>Test 2 has: </td></tr></table>
 </body>
</html>
