国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁htmlfirst_letterCSS Property Value - 如何first-letter; 使文本首字母大寫

CSS Property Value - 如何first-letter; 使文本首字母大寫

我們想知道如何first-letter; 使文本首字母大寫。

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