在线文档教程
SVG
属性 | Attributes

font-family

font-family

font-family属性指示将使用哪个字体系列来呈现文本,值为字体系列名称和/或通用系列名称的优先列表。

作为一个表现属性,它也可以作为一个属性直接在一个CSS样式表中使用,请参阅css font-family查看进一步的信息。

用法上下文

CategoriesPresentation attribute
Value[<family-name> | <generic-family>,]* <family-name> | <generic-family> | inherit
AnimatableYes
Normative documentSVG 1.1 (2nd Edition)

实例

css

p.class1{font-family:"Times New Roman",Times,serif;} p.class2{font-family:Arial,Helvetica;}

html

<p class="class1">This is a paragraph, shown in the Times New Roman font.</p> <p class="class2">This is a paragraph, shown in the Arial font.</p>

适用元素

以下元素可以使用该font-family属性

  • 文本内容元素»另请参阅

  • css font-family