font-family 属性指定元素的字体。
中文常见值有:微软雅黑 或者 宋体
英文有两种字体系列名称:
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; }