CSS :first-letter pseudo-element property
Usage
Used to apply special styling to the first letter of an element.
Example
Code:
p:first-letter {
font-weight: bold;
color: red;
}
Used to apply special styling to the first letter of an element.
p:first-letter {
font-weight: bold;
color: red;
}