How can I capitalize the first letter of each word in CSS?
问题 I am trying to capitalize the first letter of each word. I did search for it but i did not get it, is it possible in CSS? My Code currently works for the first letter only. HTML <span>Some Text Value</span> CSS .listing-table table th:first-letter { font-size: 15px; font-weight: bold; } 回答1: You can try to use this: p { text-transform: capitalize; } From the docs: text-transform This property controls capitalization effects of an element's text. capitalize Puts the first character of each