在 CSS 中使用 font-size 属性
font-size 属性用来增大或减小字体大小。font-size 属性用来控制字体大小。可能的值包括 xx-small、x-small、small、medium、large、x-large、xx-large、smaller、larger,以及以像素或百分比为单位的大小。
<html> <head> </head> <body> <p style = "font-size:15px;">This font size is 15 pixels</p> <p style = "font-size:small;">This font size is small</p> <p style = "font-size:large;">This font size is large</p> </body> </html>
广告