fluid typography for safari

Solutions on MaxInterview for fluid typography for safari by the best coders in the world

showing results for - "fluid typography for safari"
Casey
16 Jan 2021
1/* Fluid typography fix for Safari as of 07/14/21 */
2/* Place this in the same CSS selector */
3div {
4  -webkit-marquee-increment: 0vw;
5}
6
7/*
8RABBIT HOLE OF RESOURCES:
9https://codepen.io/ausi/pen/WNRyOrY
10https://www.sarasoueidan.com/blog/safari-fluid-typography-bug-fix/
11https://www.smashingmagazine.com/2016/05/fluid-typography/
12https://stackoverflow.com/questions/37070694/font-size-calc-dynamic-size-safari-failing
13*/