CSS: First Letter
::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; }
::first-letter
is a
Pseudo Element.
It lets you style the first letter of a paragraph.
What time is it?
<p class="fchar199">What time is it?</p>
p.fchar199::first-letter { font-size: 3rem; }