font-face-style-auto-variable-ref.html (775B)
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 .style5 { 18 font-family: "Inter"; 19 font-size: 3em; 20 font-variation-settings: 'slnt' -5; 21 } 22 .style0 { 23 font-family: "Inter"; 24 font-size: 3em; 25 font-variation-settings: 'slnt' 0; 26 } 27 </style> 28 29 <p class="style10">text</p> 30 <p class="style5">text</p> 31 <p class="style0">text</p>