The first-letter applies to the first character of the first formatted line of a block level element. It does not apply to inner elements such as anchors on indeed inline elements.
You would need to do something like this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
p:first-letter {
color:red;
}
</style>
</head>
<body>
<p><a href="#">Test</a></p>
</body>
</html>
Bookmarks