The flexibility of variable fonts enable developers to create more responsive designs and components that would have previously required sacrifices. With variable fonts that contain a width axis, we can adjust the font-stretch property with CSS to condense the font. When we combine this with font-size we can create more flexible response text on the web. For our example, we are using Barlow which has a width axis with a range of 300% to 500%.

The Code

You can either check out the Demo on Codepen now, or you can read on to get a breakdown.

To accomplish this we need a few things, firstly the width of the parent container and secondly, we will use scrollWidth to measure the width of our text.

const parentContainerWidth = text.parentNode.clientWidth; const currentTextWidth = text.scrollWidth;

Once we have these we also need to determine what the current font-stretch value is so we can update it as the parent changes. One way to do this is to use getComputedStyle.

const currentFontStretch = parseInt(window.getComputedStyle(text).fontStretch);

Finally, we can use these values to determine the new font-stretch value. Math.min and Math.max are really useful in this case because I don't want to extend past the available axis range for the font.

const newValue = Math.min( Math.max(300, (parentContainerWidth / currentTextWidth) * currentFontStretch), 500 );

If we break this down, let's say our parent container is 300px wide, our text is 150px wide and out current font-stretch value is at the starting value of 300%. If we divide the parent by the child we'd have a value of 2, which we then multiply by the current font-stretch of 300, giving us a value of 600 e.g. Math.max(300, 600). Because Math.max will return the highest value we'll take 600, leaving us with Math.min(600, 500), in this case we want the minimum value (our maximum font-stretch) so the final value will be 500.

This will ensure that our font-stretch value matches the width of our container, within the constraints of the available values.

Finally we can use CSS custom properties to update our font-stretch value in our CSS leaving us with the final effect.

text.style.setProperty('--fontStretch', newValue + '%');

In order to update in real time, for my Codepen example I used the resizeObserver to detect changes to the box div around my text and then i'd run a function called calcWidth which container the above code each time a change was detected.

new ResizeObserver(calcWidth).observe(box);

Bonus

While I was working on this I wanted a quick way to resize a div for the demo, I procrastinated a lot on it because I thought i'd have to write a bunch of code. Turns out, Chris Coyier had a great CSS only suggestion! resize. This property accepts a number of options and sets whether an element is resizable, and in which directions you can resize it! It only works on elements that don't have an overflow of hidden though. Check it out on MDN. (Or have a play with the bottom right corner on the header box).

You can see the full implementation in the Codepen example.