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