html - Why does a google font load differently on safari than chrome, and how do I fix it? -
chrome , safari both load same font in different manners, , it's annoying, there way fix it?
they aren't big differences, in cases, in others, main content it's big.
actually absolutely normal , can't "fix it". every client has own specificity , hardly have same render in every browser (this why front dev have nor more hair). if want can specific css each browser conditional rules such
[if ie] .box { font-weight: 900; }
for ie in example of course.
for chrome can use :
@media screen , (-webkit-min-device-pixel-ratio:0) { body {...} .class {...} }
careful tough affect safari, epiphany...
Comments
Post a Comment