<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Floats: Auto Sizing</title>
  <style type="text/css">
   .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; color: white; }
   test { display: block; width: 200px; height: 50px; background: red; }
   float { float: left; background: green; color: green; font: 50px Ahem; }
  </style>
 </head>
 <body>
  <div class="control">Ahem_font_required_for_this_test.</div>
  <p>There should be a green block below this line.</p>
  <test xmlns="http://www.w3.org/">
   <float>XXXX</float>
  </test>
 </body>
</html>
