-2

hi guys on ie 11 http://csdm4.com/design-build/ the heading 'Design build' is much thicker than chrome, any idea how could i fix it. I tried different font weight for it but it is still not working

Ali Nouman
  • 159
  • 1
  • 7
  • http://stackoverflow.com/questions/5082632/same-font-yet-its-weight-seems-different-on-different-browsers – Anonymous Aug 28 '14 at 13:09
  • 1
    different browsers render fonts differently you shouldn't *fix* it. It's not broken, that's just how it is. – Novocaine Aug 28 '14 at 13:14

1 Answers1

0

Have you tried this ?

body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
Charleshaa
  • 2,218
  • 2
  • 21
  • 25