Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apply Style for first letter in paragraph only using CSS

Tags:

html

css

I have lot of paragraphs in my page

<div>
 <p>Sample Text</p>
 <p>Abc</p>
 <p>Third Sample</p>
</div>

In each of the paragraph the first letter should be Capitalized and Font-Size is increased via CSS. All the paragraph Content in dynamically loaded. Please suggest me how to solve this without using javascript/jQuery.

like image 454
Satz Avatar asked Jan 28 '26 17:01

Satz


1 Answers

Here you are

p::first-letter
{ 
text-transform: uppercase;
font-size: 25px; /* Change this to your choice */
}

Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!