font-face-style-default-variable-ref.html (630B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"/> 4 <title>CSS Test: Support for font-style: auto in @font-face</title> 5 <style> 6 @font-face { 7 font-family: "Inter"; 8 src: url('support/fonts/Inter-VF.subset.ttf') format('truetype'); 9 font-display: swap; 10 font-style: oblique 10deg 0deg; 11 } 12 .style10 { 13 font-family: "Inter"; 14 font-size: 3em; 15 font-variation-settings: 'slnt' -10; 16 } 17 .style0 { 18 font-family: "Inter"; 19 font-size: 3em; 20 font-variation-settings: 'slnt' 0; 21 } 22 </style> 23 24 <p class="style10">text</p> 25 <p class="style0">text</p>