使用 CSS 设置字体变体

javascriptweb developmentfront end scripts

要设置字体变体,请使用 font-variant 属性。将字体设置为小写字母和普通字体。

您可以尝试运行以下代码,使用 CSS − 将字体变体设置为小写字母

<html>
   <head>
   </head>
   
   <body>
      <p style = "font-variant:small-caps;">
         This text will be rendered as small caps
      </p>
   </body>
</html>

相关文章