<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Floats: Auto Sizing (with border)</title>
  <style type="text/css">
   .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; color: white; }
   test { display: block; width: 300px; height: 150px; background: red; }
   float { float: left; color: green; font: 50px Ahem; border: 50px solid green; }
  </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>
