如果对某特定段落,其颜色要求与其它不一样,首字母加大,同时加背景颜色,该怎么实
现?
如
HTML中为:
<p id="fact1" class="large">when I am not busy learning how to take over the
world with HTMLs & CSS3 I can of ten be found relaxing woth a cup of coffee
and a good book </p>
CSS中:
p{color:red;font-family:"Times New Roman";font-size:1em}
.large:first-letter{ font-size:200%;vertical-align:middle; }
#fact1{background:yellow;color:black; font-family:arial;}
但这个描述好像还是没有实现首字母加大。
请问:伪元素和其它同时作用一段文字,html代码中该怎么写?谢谢
--
FROM 120.88.169.*