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: First-letter using background and padding</title>
5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
6 <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter">
7 <meta name="flags" content="">
8 <meta name="assert" content="The background and padding properties is allowed for :first-letter.">
9 <style type="text/css">
10 div
11 {
12 margin-top: 40px;
13 }
14 div div:first-letter, span
15 {
16 background: aqua;
17 color: green;
18 padding: 24px;
19 }
20 </style>
21 </head>
22 <body>
23 <p>Test passes if the two lines of text below look identical.</p>
24 <div>
25 <span>F</span>iller Text Filler Text Filler Text
26 <br><br>
27 <div>Filler Text Filler Text Filler Text</div>
28 </div>
29 </body>
30 </html>