I am trying to lowercase all the letters of a line and then capitalize it. I have tried the following code but it only works the last text-transform style:
.lowercase{text-transform: lowercase}
.capitalize{text-transform: capitalize}
<div class="lowercase">
<span class="capitalize">SURNAME, name</span>
</div>