<!DOCTYPE html> | |
<html lang="en"> | |
<meta charset="utf-8"/> | |
<title>CSS Test: Support for font-style: auto in @font-face</title> | |
<style> | |
@font-face { | |
font-family: "Lato"; | |
src: url('/fonts/Lato-Medium.ttf') format('truetype'); | |
font-display: swap; | |
font-style: normal; | |
} | |
.test { | |
font-family: "Lato"; | |
font-size: 3em; | |
font-style: oblique 10deg; | |
} | |
</style> | |
<p class="test">text</p> |