1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html>
3 <head>
4 <title>CSS Test: First-letter and language specific letter combinations</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="may">
8 <meta name="assert" content="Some letter combinations in some languages may be considered part of the first-letter pseudo-element.">
9 <style type="text/css">
10 div
11 {
12 font-size: 50px;
13 }
14 div:first-letter
15 {
16 color: green;
17 }
18 </style>
19 </head>
20 <body>
21 <p>Test passes if both letters "ij" are green or if only the "i" is green.</p>
22 <div lang="nl">ijFiller Text</div>
23 </body>
24 </html>