| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 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="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/
BrowserBugsSection/css21testsuite/" /> <!-- 2012-09-29 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#blockwidt
h" /> |
| 8 <link rel="match" href="block-non-replaced-width-007-ref.xht" /> |
| 9 |
| 10 <meta name="flags" content="ahem" /> |
| 11 <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 within
the edges of its containing block." /> |
| 12 <style type="text/css"> |
| 13 #div1 |
| 14 { |
| 15 border: solid black; |
| 16 height: 200px; |
| 17 width: 200px; |
| 18 } |
| 19 #div2 |
| 20 { |
| 21 background-color: orange; |
| 22 border-color: orange; |
| 23 border-style: solid; |
| 24 border-width: 0 25px; |
| 25 margin: 0 auto; |
| 26 padding: 0; |
| 27 height: 100px; |
| 28 width: 50px; |
| 29 } |
| 30 #div3 |
| 31 { |
| 32 color: blue; |
| 33 font: 100px/1 Ahem; |
| 34 text-align: center; |
| 35 } |
| 36 </style> |
| 37 </head> |
| 38 <body> |
| 39 <p>Test passes if the blue and orange squares have the same width and th
e blue square is directly below the orange square.</p> |
| 40 <div id="div1"> |
| 41 <div id="div2"></div> |
| 42 <div id="div3">X</div> |
| 43 </div> |
| 44 </body> |
| 45 </html> |
| OLD | NEW |