使用CSS设置字体的简写属性

font属性用作指定其他字体属性(例如字体系列,大小,样式等)的简写形式。

示例

您可以尝试运行以下代码来学习如何使用font属性:

<html>
   <head>
   </head>
   <body>
      <p style = "font:italic small-caps bold 13px georgia;">
         Applying all the properties on the text at once.
      </p>
   </body>
</html>