font-face-stretch-auto-static.html (702B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"/> 4 <title>CSS Test: Support for font-stretch: auto in @font-face</title> 5 <link rel="match" href="font-face-stretch-auto-static-ref.html"> 6 <link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-prop-desc" /> 7 <meta name="assert" content="font-stretch: auto applies initial value for non-variable fonts in @font-face descriptor"> 8 <style> 9 @font-face { 10 font-family: "Lato"; 11 src: url('/fonts/Lato-Medium.ttf') format('truetype'); 12 font-display: swap; 13 font-stretch: auto; 14 } 15 .test { 16 font-family: "Lato"; 17 font-size: 3em; 18 font-stretch: 125%; 19 } 20 </style> 21 22 <p class="test">text</p>