Is there a way to transform a sentence that is all in CAPs lock without changing it? This sentence is part of a paragraph, and I am looking for a CSS solution (maybe with a little Jquery) that works reliably across most devices!
I have come across similar questions but they do not cover the issue of multiple sentences.
Original Text:
THIS IS THE FIRST SENTENCE. And this is the second, as it is from the server.
Desired output:
This is the first sentence. And this is the second...
I attempted using the following CSS, but it only applies to the first letter and does not work with multiple sentences:
p { text-transform: lowercase;}
p:first-letter {text-transform:capitalize}