Computer >> Computer tutorials >  >> Programming >> Javascript

Capitalize text with CSS


To capitalize text with CSS, use the capitalize property. You can try to run the following code to capitalize text:

<html>
   <head>
   </head>
   <body>
      <p style = "text-transform:capitalize;">
         India
      </p>
   </body>
</html>