HTML Element Style How to - Make heading text capitalization Title case








Question

We would like to know how to make heading text capitalization Title case.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h2 {<!--   w ww. j  av  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: