freeCodeCamp/guide/chinese/html/attributes/font-size-attribute/index.md

615 B
Raw Blame History

title localeTitle
Font Size Attribute 字体大小属性

字体大小属性

此属性将字体大小指定为数字或相对值。数值范围从17其中1表示最小值, 3表示默认值。它也可以使用相对值定义,例如+2-3 ,它相对于<basefont>元素的size属性的值设置它或相对于3 ,默认值(如果不存在)。

句法:

<font size="number">

例:


<html> 
  <body> 
    <font size="6">This is some text!</font> 
  </body> 
 </html> 

注意: The size attribute of <font> is not supported in HTML5. Use CSS instead.