テキストの一文字目に、適用させるスタイルを指定します。
IE5.5 / IE6 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]:first-letter { 値; }
<html>
<head>
<title>サンプルコード</title>
<style type="text/css">
#sample1:first-letter{
font-size : x-large;
color : #0066ff;
float : left;
font-weight : bold;
}
</style>
</head>
<body>
<div id="sample1">First-letterサンプル<br style="clear:left;"></div>
</body>
</html>