Need to capitalize just the first letter of a text string? CSS text-transform
has capitalize
but that capitalizes every word.
Fortunately, you can use the ::first-letter
pseudo element! In my case, I wanted all of the links in my navigation to definitely start with a capital letter, so I went with this:
#primary_navigation a::first-letter {
text-transform: uppercase;
}
Slick!