CSS中font属性的用法

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>