首页htmltext_transformCSS Property Value - 如何text-transform: capitalize; 使文本首字母大写

CSS Property Value - 如何text-transform: capitalize; 使文本首字母大写

我们想知道如何text-transform: capitalize; 使文本首字母大写。

<!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>