国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁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>