In the following example also found at: http://jsfiddle.net/vqBLX/1/ is there any way to get block "six" to float to the top of the right column without changing its position in the html?
Code Example:
#container{width:200px; backgroung:#ccc;}
.box{width:110px; height:100px; background-color:red;}
.one, .two, .three, .four, .five{float:left}
.six{float:right; background-color:blue; width:90px;}
<div id="container">
<div class="box one"> </div>
<div class="box two"> </div>
<div class="box three"> </div>
<div class="box four"> </div>
<div class="box five"> </div>
<div class="box six"> </div>
</div>