In CSS, how do you make each word in a paragraph start with a capital letter?
Example:
If input is “virat kohli is good cricker player.” the output will be “Virat Kohli Is Good Cricker Player.”1
text-font:uppercase
2
text-transform:uppercase
3
text-transform:capitalize
4
text-font:capitalize