How to Every First Word Letter Convert in Capital through CSS or PHP if all words are in Uppercase?
WordPress Development Stack Exchange is a question and answer site for WordPress developers and administrators. It only takes a minute to sign up.
Anybody can ask a question
Anybody can answer
The best answers are voted up and rise to the top
Asked
Viewed
10 times
I am trying to change the letter of every first word to capital letters, while all words are in Uppercase.
Example:
THIS IS A CAT:
/*not working if all words are in UPPERCASE.*/
<style>
text-transform: capitalize;
</style>
/*PHP not working*/
<?PHP ucword(); ?>
3
default

Leave an answer