| 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: Box centering with 'margin-left' and 'margin-right' set
to auto</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#blockwidt
h"> | |
| 7 <meta name="flags" content="ahem"> | |
| 8 <script src="../../resources/ahem.js"></script> | |
| 9 <meta name="assert" content="When 'margin-left' and 'margin-right' are s
et to auto and the element has a 'width' then the box will be centered."> | |
| 10 <style type="text/css"> | |
| 11 #div1 | |
| 12 { | |
| 13 border: solid black; | |
| 14 height: 2in; | |
| 15 width: 2in; | |
| 16 } | |
| 17 #div2 | |
| 18 { | |
| 19 background-color: orange; | |
| 20 border-color: orange; | |
| 21 border-style: solid; | |
| 22 border-width: 0 0.25in; | |
| 23 margin: 0 auto; | |
| 24 padding: 0; | |
| 25 height: 1in; | |
| 26 width: 0.5in; | |
| 27 } | |
| 28 #div3 | |
| 29 { | |
| 30 color: blue; | |
| 31 font: 1in/1em Ahem; | |
| 32 text-align: center; | |
| 33 } | |
| 34 </style> | |
| 35 </head> | |
| 36 <body> | |
| 37 <p>Test passes if the blue and orange boxes are the same width and the b
lue box is directly below the orange box.</p> | |
| 38 <div id="div1"> | |
| 39 <div id="div2"></div> | |
| 40 <div id="div3">X</div> | |
| 41 </div> | |
| 42 </body> | |
| 43 </html> | |
| OLD | NEW |