files/en-us/web/svg/reference/attribute/font-style/index.md
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-stylealso has a CSS property counterpart: {{cssxref("font-style")}}. When both are specified, the CSS property takes priority.
You can use this attribute with the following SVG elements:
<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>
{{EmbedLiveSample}}
For a description of the values, please refer to the CSS font-style property.
{{Specifications}}
{{Compat}}