首页htmltext_transformCSS Property Value - 如何text-transform: uppercase;

CSS Property Value - 如何text-transform: uppercase;

我们想知道如何text-transform: uppercase;


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
input {
  text-transform: uppercase;
}
</style>
</head>
<body>
  <input type="text" value="lowercase text" />
</body>
</html>