CSS Property Value How to - text-transform: uppercase;








Question

We would like to know how to text-transform: uppercase;.

Answer


<!-- ww  w . j a v a2 s.  c  om-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
input {
  text-transform: uppercase;
}
</style>
</head>
<body>
  <input type="text" value="lowercase text" />
</body>
</html>

The code above is rendered as follows: