<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
p:before {
content:"Former - ";
color:red;
font-family:"Tahoma" ,Times New Roman;
font-size:70%;
}
p.normal:first-letter {
font-size:40px;
color:blue;
}
</style>
</head>
<body>
<p class="normal">First character of this paragraph will
be normal and will have font size 40px;</p>
</body>
</html>
ここでは、疑似要素の内容が赤で表示されていますが、「この段落の最初の文字:before
」の文字「F」も青でスタイルしたいと考えています。代わりに、「F ormer - 」の「F」が青色で表示されます。
私が望むのは、コンテンツの後:before
の最初の文字と両方を同じ段落に適用することです。これは可能ですか?もしそうなら、どのように?.normal
:before