Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<title>CSS Test: First-letter and language specific letter combinations</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="flags" content="may" />
<meta name="assert" content="Some letter combinations in some languages may be considered part of the first-letter pseudo-element." />
<style type="text/css">
div
{
font-size: 50px;
}
div:first-letter
{
color: green;
}
</style>
</head>
<body>
<p>Test passes if both letters "ij" are green or if only the "i" is green.</p>
<div lang="nl">ijFiller Text</div>
</body>
</html>