CSS: First Letter

By Xah Lee. Date: . Last updated: .

::first-letter is a Pseudo Element. It lets you style the first letter of a paragraph.

Example

What time is it?

Code

<p class="fchar199">What time is it?</p>
p.fchar199::first-letter {
 font-size: 3rem;
}

CSS, Text Decoration