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-image</title>
5 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#background-image">
6 <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html">
7 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
8 <style type="text/css">
9 p {background-image: url(support/1x1-lime.png);}
10 .one {background-image: none;}
11 </style>
12 <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'">
13 </head>
14 <body>
15 <p> This sentence should have a bright green background. </p>
16 <p> This sentence <span class="one">should have a bright green background</span> too.</p>
17 </body>
18 </html>