<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Floats: Auto Sizing (with padding)</title>
  <style type="text/css">
   .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; color: white; }
   test { display: block; }
   control { display: block; width: 150px; height: 75px; margin-bottom: 10px; background: navy; }
   float { float: left; background: navy; color: navy; font: 25px Ahem; padding: 25px; }
  </style>
 </head>
 <body>
  <div class="control">Ahem_font_required_for_this_test.</div>
  <p>There should be two identical blocks below.</p>
  <test xmlns="http://www.w3.org/">
   <control/>
   <float>XXXX</float>
  </test>
 </body>
</html>
