background-root-011

Background propagation on and - fully transparent

WeasyPrint

This browser

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 propagation on &lt;body&gt; and &lt;html&gt; - fully transparent</title>
 5   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
 6   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/background/08.html" type="text/html">
 7   <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background">
 8 <style type="text/css">
 9    body { border: solid lime; background: transparent; }
10    html { border: solid blue; background: transparent; }
11    p, :link, :visited { color: black; background: white; }
12    * { margin: 1em; padding: 1em; }
13 </style>
14 
15 </head>
16 <body>
17 <p>Enclosing this text should be a solid lime border around which
18 there should be a solid blue one. The backgrounds are undefined.</p>
19 
20 
21 </body>
22 </html>