Divs and growing columns without float clear

An example (picked from StackOverflow) on how to create divs with growing columns without float: clear.

by petermorlion

HTML

<h1>Divs and growing columns without float clear</h1>
<div style="overflow: hidden;">
    <div style="background: blue;float: left;width: 65%;padding-bottom: 500px;margin-bottom: -500px;">column a<br />column a<br /> column c</div>
  <div style="background: red;float: right;width: 35%;padding-bottom: 500px;margin-bottom: -500px;">column b</div>
</div>