Enabling Responsive Font Size

So, in the current version (5.4.3) it all scales well using vw and min, and max.

In the Font Size parameter of the paragraph I was looking to scale I put the following:

min(max(30px, 8vw), 70px)

If you unpick the ordering and brackets, that sets the text to a size of 8vw (view width units) with a minimum of 30px and a maximum of 70px.

I’ve updated this (old) post as when I was Googling around trying to figure out how to do it this came near the top of the list!