SVG
属性 | Attributes

font-size

font-size

font-size当在多行布局环境中将多行文本设置为固定时,该属性是指从基线到基线的字体大小。对于SVG,如果<length>没有单位标识符(例如,无单位的数字,如128),则浏览器将<length>作为当前用户坐标系统中的高度值进行处理。

如果<length>具有单位标识符之一(例如,12pt或10%),则浏览器将<length>转换为当前用户坐标系中的对应值

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

用法上下文

CategoriesPresentation attribute
Value<absolute-size> | <relative-size> | <length> | <percentage> | inherit
Initial valuemedium
AnimatableYes
Normative documentSVG 1.1 (2nd Edition)

实例

带px的字体大小值

css

h1 {font-size:30px;} h2 {font-size:20px;} p {font-size:15px;}

html

<h1>30pixel</h1> <h2>20pixel</h2> <p>15pixel</p>

带Em的字体大小值

css

h1 {font-size:2.9em;} h2 {font-size:1.9em;} p {font-size:0.9em;}

html

<h1>2.9em</h1> <h2>1.9em</h2> <p>0.9em</p>

适用元素

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

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

  • css font-size