首页htmlh1_6HTML Element Style - 如何使标题文本大写字母大写

HTML Element Style - 如何使标题文本大写字母大写

我们想知道如何使标题文本大写字母大写。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h2 {
  text-transform: lowercase;
}

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