I have content that is in uppercase ( that’s the way it’s persisted on the back end ) and I have to transform it into ‘proper case’.
I’m finding out that ‘text-transform:capitalize’ doesn’t work. I suspect there’s no css based workaround for that either.
.text-test{
text-transform:capitalize;
} ... <h1 class="text-test">SOME UPPER CASE TEXT</h1>
Is my conclusion correct?
Thanks
Capitalise won’t work as it targets on the first letter of whatever you’re targeting so the rest of the text won’t be affected. You’ll have to edit it in the HTML or maybe a jQuery solution can be found,
I care 🙂