<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

 <title>':hover + *' and '~'</title>

 <style type="text/css">
 <![CDATA[
  :root{
   margin:3em;
  }
  [href]{ /* should be ':link' */
   cursor:pointer;
   color:blue;
   background:transparent;
   text-decoration:underline;
  }
  
  nl > *{
   margin:.1em .3em;
   display:inline;
  }
  nl > label ~ li{
   display:none;
  }
  nl:hover > label ~ li{
   display:inline;
  }
  
  dl{
   position:relative;
   margin:3em .3em .1em;
   display:block;
   width:25em;
  }
  dl > dt{
   float:left;
   clear:both;
  }
  dl > dt + dd{
   display:none;
  }
  dl > dt:hover + dd{
   position:absolute;
   right:1em;
   margin:0;
   display:block;
  }
 ]]>
 </style>
 
 <nl>
  <label>Navigation</label>
  <li href="#">Home</li>
  <li href="#">Products</li>
  <li href="#">Services</li>
  <li href="#">About us</li>
  <li href="#">Contact</li>
 </nl>

 <dl>
  <dt href="">Home</dt>
  <dd>Our home page, very boring indeed.</dd>
  <dt href="">Products</dt>
  <dd>We create standard compliant sites</dd>
  <dt href="">Services</dt>
  <dd>We help unexperienced authors with markup &amp; style</dd>
  <dt href="">About us</dt>
  <dd>Not much to read here.</dd>
  <dt href="">Contact</dt>
  <dd>Any questions?</dd>
 </dl>

</html>
