CSS中font-variant属性的用法

font-variant属性用于创建小写效果。可能的值是正常和小写。

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