font-face-sign-function.html (629B)
1 <!DOCTYPE html> 2 <meta charset="utf-8" /> 3 <title>CSS Test: Support for sign function in @font-face</title> 4 <link rel="match" href="font-face-weight-auto-static-ref.html"> 5 <link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-prop-desc" /> 6 <style> 7 :root { 8 font-size: 16px; 9 } 10 @font-face { 11 font-family: "Lato"; 12 src: url('/fonts/Lato-Medium.ttf') format('truetype'); 13 font-display: swap; 14 font-weight: calc(sign(1rem - 1px) * 400); 15 font-width: calc(sign(1rem - 1px) * 100%); 16 } 17 18 .test { 19 font-family: "Lato"; 20 font-size: 3em; 21 font-weight: bold; 22 } 23 </style> 24 25 <p class="test">text</p>