<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS 2.1 Test Suite: span pseudo classes</title>
  <style type="text/css"><![CDATA[
   span {color: green;}
   span:link {color: red;}
   span:visited {color: red;}
   span:hover {color: green;}
   span:focus {color: red;}
   span:active {color: red;}
   #one {color: red;}
  ]]></style>
 </head>
 <body>
  <p><span>This sentence should be green.</span> Check that it remains green if you click it.</p>
 </body>
</html>
