| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | |
| 2 <html lang="en"> | |
| 3 <head> | |
| 4 <title>CSS Test: Replaced inline elements wrapping around floats (% widths)</t
itle> | |
| 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"> | |
| 6 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/replaced/0
02.html" type="text/html"> | |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#inline-replaced
-width"> | |
| 8 <style type="text/css"> | |
| 9 div { width: 600px; height: 200px; background: red; } | |
| 10 div p { height: 100px; background: green; } | |
| 11 img { vertical-align: bottom; } | |
| 12 img.float { float: left; } | |
| 13 img.flow { width: 100%; height: 100px; } | |
| 14 </style> | |
| 15 </head> | |
| 16 <body> | |
| 17 <p>There should be no red below.</p> | |
| 18 <div> | |
| 19 <p> | |
| 20 <img src="resources/swatch-green.png" height="100" alt="" class="float"> | |
| 21 <img src="resources/swatch-green.png" alt="Image support required for this t
est" class="flow"> | |
| 22 </p> | |
| 23 </div> | |
| 24 </body> | |
| 25 </html> | |
| OLD | NEW |