Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / 20110323 / block-non-replaced-width-007.htm
blob3f5af626ffb8ee2876bb7193af8f6e8d56f5958d
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.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#blockwidth">
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 set to auto and the element has a 'width' then the box will be centered.">
10 <style type="text/css">
11 #div1
13 border: solid black;
14 height: 2in;
15 width: 2in;
17 #div2
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;
28 #div3
30 color: blue;
31 font: 1in/1em Ahem;
32 text-align: center;
34 </style>
35 </head>
36 <body>
37 <p>Test passes if the blue and orange boxes are the same width and the blue 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>