How do I make a paragraph sentence Case (first alphabet of each word capital) in CSS?

Thanx for your help.

" First character of each word in Uppercase "
is not Sentence case, it would be Title case.

In CSS, you would want to use ":capitalize".
Note: it uses a "z" not an "s".

...

p
{
text-transform: capitalize;
}

I think that would give you...
" Text That Looks Something Like This. "

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.