| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>CSS Test: Floated replaced elements and 'auto' specified for 'mar
gin-left', 'margin-right' and intrinsic width</title> | |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> | |
| 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#float-rep
laced-width"> | |
| 7 <meta name="flags" content="image"> | |
| 8 <meta name="assert" content="Computed value of 'auto' for 'margin-left'
or margin-right' on floated replaced elements becomes a used value of '0'. The i
ntrinsic width is also used if 'height' and 'width' are 'auto'."> | |
| 9 <style type="text/css"> | |
| 10 #div1 | |
| 11 { | |
| 12 border: solid black; | |
| 13 height: 2in; | |
| 14 width: 2in; | |
| 15 } | |
| 16 img | |
| 17 { | |
| 18 float: left; | |
| 19 margin-left: auto; | |
| 20 margin-right: auto; | |
| 21 } | |
| 22 div div | |
| 23 { | |
| 24 background: orange; | |
| 25 height: 15px; | |
| 26 margin-top: 15px; | |
| 27 width: 15px; | |
| 28 } | |
| 29 </style> | |
| 30 </head> | |
| 31 <body> | |
| 32 <p>Test passes if the blue and orange boxes below are the same width, an
d the blue box is in the upper-left corner of the black box.</p> | |
| 33 <div id="div1"> | |
| 34 <img alt="blue 15x15" src="resources/blue15x15.png"> | |
| 35 <div></div> | |
| 36 </div> | |
| 37 </body> | |
| 38 </html> | |
| OLD | NEW |