blob: 4fefe467d5b6e5bf607f968ea785f97595ebbc20 [file] [log] [blame]
<!DOCTYPE HTML>
<style>
body { margin: 0px; }
.float { float: left; width:100px; height:100px; background-color: green }
.normal { width: 100px; height:100px; background-color: green }
#container { width: 200px; height:100px; background-color: red }
.negleft { margin-left: -50px; }
.block { display: block; overflow:hidden; }
</style>
<p> There should be no red. </p>
<div id="container">
<div class="float"></div>
<div class="block normal negleft"></div>
</div>