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