first-letter 擬似要素

テキストの一文字目に、適用させるスタイルを指定します。


ブラウザ

IE5.5 / IE6 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac

▲PageTop

書式

要素[.class名][#id名]:first-letter { 値; }

▲PageTop

サンプル

ソースコード

<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>

表示結果

First-letterサンプル

▲PageTop

関連項目

CSS

first-line

▲PageTop