Reputation: 25
In my website document where i am using multiple paragraph,i want to make the first letter of the first paragraph font size increase.how to do that ?please help me.when i am making changes its reflecting on all paragraphs.
<p>This is my first paragraph</p>
<p>This is my second paragraph</p>
<p>This is my third paragraph</p>
I want to increase the size of 'T' alone in the first paragraph. Please advice me how to do that ?
Upvotes: 1
Views: 118
Reputation: 3788
Use the first-letter
selector
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>
Upvotes: 3
Reputation: 404
Surround the first character by a span tag, and style it so that the font size is bigger.
<p><span style="font-size:25px;">T</span>his is my paragraph</p>
Upvotes: 0