Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 152 Bytes

css-first-letter.md

File metadata and controls

9 lines (7 loc) · 152 Bytes

CSS ::first-letter pseudo-element

CSS can be applied to the first letter of an element:

p::first-letter {
  text-transform: uppercase;
}