テキストの1行めに適用させるスタイルを指定します。
IE5.5 / IE6 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]:first-line { 値; }
<html>
<head>
<title>サンプルコード</title>
<style type="text/css">
#sample1:first-line{
text-decoration : underline;
color : 0066ff;
font-size : x-large;
}
</style>
</head>
<body>
<div id="sample1">
first-lineサンプル
このプロパティは、テキストの<strong>1行目に</strong>適用されるものです。折り返すか、<br>で改行するまで適用されます。
</div>
</body>
</html>