::first-letter in css
::first-letter is a pseudo element which allows you to style the first letter in an element, without needing to stick a tag around that first letter in your HTML. While no tags are added to the DOM, it is as if the targeted first letter were encompassed in a tag. You can style that first letter as you would a real element with:
p::first-letter {
text-transform:capitalize;
}
Leave a Reply
Want to join the discussion?Feel free to contribute!