I would like to choose the angle of inclination of an font with the "font-style: oblique "angle""
Like on this example: https://developer.mozilla.org/en-US/docs/Web/CSS/font-style
I would also like to use negative angle
But I think I missed a detail, when I'm using the exact same snippet in my code the text is always displayed with the default value of inclination (14deg).
Should I use specific font/browser or another css propriety?
Browser : firefox 97.0.1
h2 {
font-style: oblique 30deg;
}
<h2>Oblique text with 30deg angle<h2>
Thanks for your answer