The ::first-letter selector is used to add a style to the first letter of an element.
You guys may have seen something like this on few sites, where the first letter of a main paragraph is larger than the rest of the content.
p::first-letter {
font-size: 25px;
color: #8A2BE2;
}
Example:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur cursus justo erat. Vestibulum neque nulla, hendrerit vitae ipsum aliquam, dignissim ullamcorper tortor. Suspendisse ultricies tortor sed dolor tincidunt euismod. Sed nibh turpis, tincidunt ac massa non, ornare dictum est.