How to reduce font weight in Firefox on Mac with CSS?
you can use,
font-weight:normal !important;
for fix the visualization error on firefox Mac.
This affects firefox browser ONLY.
@-moz-document url-prefix() {
.classname {
font-weight:normal;
/* or any other option */
}
}
Enjoy!
FireFox posted a resolution to this today on their bug forum. It was just finalized today so won't be in use for a while, but we should all put
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
in our body
tag to reset this for all browsers. FINALLY!! man, that made my day! This should come out in the next FF release.
thread here https://bugzilla.mozilla.org/show_bug.cgi?id=857142