Open FrontEndCoder23 opened 2 weeks ago
styles.css
body { font-family: sans-serif; } :root { --minVw: 320px; --maxVw: 720px; --minSize: 16px; --maxSize: 32px; } h1 { font-size: clamp(var(--minSize), calc((var(--maxSize) - var(--minSize)) / (var(--maxVw) - var(--minVw)) * (100vw - var(--minVw)) + var(--minSize), var(--maxSize)); }
@FrontEndCoder23 It's not working properly 🤔 I don't see a change in the font size on resizing the window.
styles.css