使用CSS设置字体变体

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

您可以尝试运行以下代码以使用CSS将font-variant设置为small-caps:

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