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: background-position</title>
5 <meta name="flags" content="ahem image">
6 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#background-position">
7 <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
8 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
9 <style type="text/css">
10 html,body,div { margin: 0; border: 0; padding: 0; }
11 div { font: 15px/1 Ahem; color: white; width: 11em; }
12 .right { width: auto; text-align: right; }
13
14 /* tests */
15 body {background-image: url(support/swatch-red.png); background-position: right top;
16 background-repeat: no-repeat;}
17 .one {background-image: url(support/swatch-red.png); background-position: center;
18 background-repeat: no-repeat;}
19 .two {background-image: url(support/swatch-red.png); background-position: 50% 50%;
20 background-repeat: no-repeat;}
21 .three {background-image: url(support/swatch-red.png); background-position: bottom right;
22 background-repeat: no-repeat;}
23 </style>
24 <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" title="14.2.1 Background properties: 'background-color', 'background-image', 'background-repeat', 'background-attachment', 'background-position', and 'background'">
25 </head>
26 <body>
27 <div class="right">X</div>
28 <p>There should be no red on this page (look in the upper right hand corner too).</p>
29 <div class="one">
30
31
32 X
33
34
35 </div>
36 <div class="two">
37
38
39 X
40
41
42 </div>
43 <div class="three">
44
45
46
47
48 X
49 </div>
50 </body>
51 </html>