FontFlex: a lightweight jQuery extension for dynamic font sizes
1–6 of 6 posts
Re: FontFlex: a lightweight jQuery extension for dynamic font sizes
#2Re: FontFlex: a lightweight jQuery extension for dynamic font sizes
#3Re: FontFlex: a lightweight jQuery extension for dynamic font sizes
#4This is very nicely done, however css viewport units have what appears to be the same browser support and are built-in. I think what this delivers that css doesn't is explicit bounds for min and max size, whereas you'd have to do a media query or something to set those in a pure css solution.
Re: FontFlex: a lightweight jQuery extension for dynamic font sizes
#5This is very nicely done, however css viewport units have what appears to be the same browser support and are built-in. I think what this delivers that css doesn't is explicit bounds for min and max size, whereas you'd have to do a media query or something to set those in a pure css solution.
This is nice because it's completely flexible/dynamic. You don't have to worry about declaring font sizes for every screen width or breakpoint. That would require an unnecessary amount of media queries...
[1] http://dev.w3.org/csswg/css-values/#viewport-relative-length...
Re: FontFlex: a lightweight jQuery extension for dynamic font sizes
#6Earlier quoted context omitted.
This is nice because it's completely flexible/dynamic. You don't have to worry about declaring font sizes for every screen width or breakpoint. That would require an unnecessary amount of media queries...
Well viewport units are completely flexible/dynamic [1]. That's their purpose. But I can see how this library might be a quicker solution in many cases. [1] http://dev.w3.org/csswg/css-values/#viewport-relative-length...