1 <!DOCTYPE html>
2 <html><head>
3 <meta charset="utf-8">
4 <title>
5 CSS Values and Units + CSS Background and Borders Test:
6 Initial property and background-color
7 </title>
8 <meta content="
9 The initial keyword is supported on background-color.
10 " name="assert">
11
12 <link href="mailto:fremycompany.developer@yahoo.fr" rel="author" title="François REMY">
13
14 <link href="http://www.w3.org/TR/css3-values/#attr-notation" rel="help">
15
16 <link href="reference/all-green.htm" rel="match">
17
18 <style type="text/css">
19
20 html, body { margin: 0px; padding: 0px; }
21
22 html { background: green; overflow: hidden; }
23 #outer { position: absolute; top: 0px; left: 0px; red; width: 100%; height: 100%; }
24 #outer { background: red; background-color: initial; }
25
26 </style>
27
28 </head>
29 <body>
30
31 <div id="outer"></div>
32
33
34
35 </body></html>