CSS Property Value How to - text-transform: capitalize; Make text capitalization Title case








Question

We would like to know how to text-transform: capitalize; Make text capitalization Title case.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h2 {<!--from  w  ww. jav  a  2  s.  c o m-->
  text-transform: lowercase;
}

h2:first-letter {
  text-transform: capitalize;
}
</style>
</head>
<body>
  <h2>are there OTHER USES for this medicine?</h2>
</body>
</html>

The code above is rendered as follows: