如何使第一个字母字体仅在第一段增加

时间:2015-09-04 03:41:14

标签: html5

在我使用多个段落的网站文档中,我想让第一段字体大小的第一个字母增加。如何做到这一点?请帮助我。当我正在对所有段落进行修改时。< / p>

<p>This is my first paragraph</p>
<p>This is my second paragraph</p>
<p>This is my third paragraph</p>

我想增加&#39; T&#39;单独在第一段。 请告诉我怎么做?

2 个答案:

答案 0 :(得分:3)

使用first-letter选择器

p:first-child:first-letter { 
        font-size: 40px;
    }
<p>This is my first paragraph</p>
<p>This is my second paragraph</p>
<p>This is my third paragraph</p>

答案 1 :(得分:0)

用span标记包围第一个字符,并设置样式以使字体更大。

<p><span style="font-size:25px;">T</span>his is my paragraph</p>