how to format text to sentance case in html code example
Example 1: How do you make each word in a text start with a capital letter?
h1 {
text-transform: capitalize;
}
Example 2: css all uppercase to capitalize
.link {
text-transform: lowercase;
}
.link::first-line {
text-transform: capitalize;
}