Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<head>
<title>CSS Test: :first-letter applied to joined text</title>
<link rel="author" title="Eira Monstad, Opera Software ASA" href="mailto:public-testsuites@opera.com"/>
<meta name="assert" content=":first-letter applied to joined text should not break joining"/>
<style type="text/css"><![CDATA[
.test:first-letter {
color: blue;
}
.test, .control {
font-size: 2em;
}
]]></style>
</head>
<body>
<p>The rightmost half of the rightmost compound on the first line below should be blue. Except for color the two lines below should be identical.</p>
<p class="test">بائعة</p>
<p class="control">بائعة</p>
</body>
</html>