See the following code:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>First-letter test page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
p.test:first-letter { text-transform: capitalize; color:red }
</style>
</head>
<body>
<p class="test">normal text</p>
<p class="test"><a href="#">test link</a></p>
</body>
Using Mozilla Firebird 0.7 (Windows) the first-letter effect disappears when you move the mouse over the link. This doesn't happen in IE. Is this a bug? Am I doing something wrong?
