If you need to capitalize only the first word of a sentence use the first-letter
property for that.
.your_class_name::first-letter{
text-transform: capitalize;
}
This was useful to me to capitalize data from an API and can't handle it on the base app.