W3cubDocs

/SVG

font-style

The font-style attribute specifies whether the text is to be rendered using a normal, italic, or oblique face.

Note: As a presentation attribute, font-style can be used as a CSS property. See the CSS font-style property for more information.

You can use this attribute with the following SVG elements:

Example

<svg viewBox="0 0 250 30" xmlns="http://www.w3.org/2000/svg">
  <text y="20" font-style="normal">Normal font style</text>
  <text x="150" y="20" font-style="italic">Italic font style</text>
</svg>

Usage notes

Value normal | italic | oblique
Default value normal
Animatable Yes

For a description of the values, please refer to the CSS font-style property.

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
font-style No No No No No No No No No No No No

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/font-style