If the label text itself in the uppercase how to change a label text to the capitalize.
I tried this.
<p class="capitalize">THIS IS SOME TEXT.</p>
I have added
p.capitalize {
text-transform: capitalize;
}
I am getting the value as THIS IS SOME TEXT instead of This Is Some Text. There are many ways of doing this by javascript but i want to achieve this only by CSS.
Thanks in advance.