<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS: 1 simple test of :first-child</title>
  <style type="text/css">
   html { color: green; }
   :root:first-child { color: red ! important; }
  </style>
 </head>
 <body>
  <p>This should be green.</p>
 </body>
</html>
