| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> |
| <title>Replaced inline elements wrapping around floats (% widths)</title> |
| div { width: 600px; height: 200px; background: red; } |
| div p { height: 100px; background: green; } |
| img { vertical-align: bottom; } |
| img.float { float: left; } |
| img.flow { width: 100%; height: 100px; } |
| <p>There should be no red below.</p> |
| <img src="resources/sample.gif" alt="" class="float"> |
| <img src="resources/sample.gif" alt="Image support required for this test" class="flow"> |