暂无 |

font-family字体家族属性

font-family 属性指定元素的字体。

中文常见值有:微软雅黑 或者 宋体

英文有两种字体系列名称:

  • -字体系列:特定的字体系列(如Times New Roman或Arial)
  • -通用字体系列:一组外观相似的字体系列(如serif或sans-serif)

serif:"Times New Roman" Georgia

sans-serif:Arial Verdana

html

<p class="simsong">
   这行字显示为宋体
</p>
<p class="yahei">
  这行字显示为微软雅黑
</p> 
<p class="arial">
   这行英文 this line shown in arial 字体
</p> 
<p class="times">
   这行英文 this line shown in Times New Roman 字体
</p> 
 

css

p.simsong {
   font-family: 宋体;
}
p.yahei {
   font-family: 微软雅黑;
}
p.arial {
   font-family: Arial,Helvetica,sans-serif;
}
p.times {
   font-family:"Times New Roman",serif;
}
用逗号分隔每个值,以表明它们是可选的
如果字体系列的名称不止一个单词,它必须用引号:“Times New Roman”。

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论