background-position-133

Background-position using a keyword and length value, center 96px

WeasyPrint

This browser

Flags
image
Assertion
The 'background-position' property correctly applies a keyword and length value.

Source

 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 using a keyword and length value, center 96px</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-position">
 7         <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties">
 8         <meta name="flags" content="image">
 9         <meta name="assert" content="The 'background-position' property correctly applies a keyword and length value.">
10         <style type="text/css">
11             div
12             {
13                 background-repeat: no-repeat;
14                 height: 3in;
15                 width: 3in;
16             }
17             #div1
18             {
19                 background-image: url("support/background-position-center-center.png");
20             }
21             div div
22             {
23                 background-image: url("support/blue96x96.png");
24                 background-position: center 96px;
25             }
26         </style>
27     </head>
28     <body>
29         <p>Test passes if there is no red visible on the page.</p>
30         <div id="div1">
31             <div></div>
32         </div>
33     </body>
34 </html>