Search code examples
csstitle-case

How to convert capitalized sentence into first word uppercase?


Input: I AM A STUDENT
Expected Output: I Am A Student
How can I achieve this using css?


Solution

  • p {
      text-transform: lowercase;
    }
    p:first-line {
      display: block;
      text-transform: capitalize;
    }
    <p>I AM A STUDENT</p>