Answers for "font which has first letter of each word capital"

CSS
2

How do you make each word in a text start with a capital letter?

h1 {
  text-transform: capitalize;
}
Posted by: Guest on September-14-2020
0

Capitalize the first letter of string using CSS

p:first-letter {text-transform:capitalize;}
Posted by: Guest on January-04-2022

Code answers related to "font which has first letter of each word capital"

Browse Popular Code Answers by Language