| 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 |
| 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 4 |
| 5 <head> |
| 6 |
| 7 <title>CSS Test: replaced elements - margin</title> |
| 8 |
| 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/" /> |
| 10 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#block-replaced-
width" /> |
| 11 <meta name="flags" content="" /> |
| 12 <meta name="assert" content="Block-level, replaced elements with 'margin-left:
auto' and 'margin-right: auto' should be centered within their respective paren
t block." /> |
| 13 |
| 14 <style type="text/css"><![CDATA[ |
| 15 div |
| 16 { |
| 17 background-color: green; |
| 18 line-height: 0; |
| 19 margin: 1em; |
| 20 } |
| 21 |
| 22 input |
| 23 { |
| 24 background-color: orange; |
| 25 display: block; |
| 26 margin-left: auto; |
| 27 margin-right: auto; |
| 28 width: auto; |
| 29 } |
| 30 ]]></style> |
| 31 |
| 32 </head> |
| 33 |
| 34 <body> |
| 35 |
| 36 <p>Test passes if there is 1 orange stripe horizontally centered within each o
f 2 wide green bars.</p> |
| 37 |
| 38 <div> |
| 39 <input type="button" value="
" /> |
| 40 </div> |
| 41 |
| 42 <form action=""> |
| 43 <div> |
| 44 <input type="submit" value=" &nbs
p; " /> |
| 45 </div> |
| 46 </form> |
| 47 |
| 48 </body> |
| 49 </html> |
| OLD | NEW |