Another day, another useful CSS quick walkthrough! So take a moment and think, when was the last time you worked on a project where you needed only the first letter in an element to look different. Most of the time the first solution would be a mix of JS logic and CSS classes. However, there is a good option to use just CSS alone. Let’s take a look
a::first-letter {
color: blue;
font-size: 3rem;
}
Now every anchor tag will have its first letter match that style. Easy, convenient, and very manageable. Give it a try for yourself and have fun!