Answers for "how do you make each word in a text start with a capital letter using css"

CSS
4

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
7

all text in caps using css

.class_name {
  text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}
Posted by: Guest on July-14-2020

Code answers related to "how do you make each word in a text start with a capital letter using css"

Browse Popular Code Answers by Language