使用CSS设置元素的字体拉伸

要设置元素的字体拉伸,请使用font-stretch属性。可能的值可以是正常值,更宽,更窄,超压缩,超压缩,压缩,半压缩,半扩展,扩展,超扩展,超扩展。

<html>
   <head>
   </head>
   <body>
      <p style = "font-stretch:ultra-expanded;">
         If this doesn't appear to work, it is likely that your computer doesn't have a
         condensed or expanded version of the font being used.
      </p>
   </body>
</html>