<!DOCTYPE html> | |
<style> | |
.container { | |
width: 200px; | |
height: 100px; | |
font: 100px/1 Ahem, sans-serif; | |
background-color: green; | |
margin-bottom: 50px; | |
color: green; | |
} | |
</style> | |
<body> | |
<p>If two floats affect the same line and the longer float has a shape that makes it short, then the other float should be respected as the offset for the line.</p> | |
<p>You should see two green rectanges. There should be no red.</p> | |
<div class="container"> | |
</div> | |
<div class="container"> | |
</div> | |
</body> |