Font display problems are common in GChrome, try changing the order of the @ font-face sources ... Chrome uses the .svg file in the sources of the @ font-face font, for some reason it does not transfer the .svg named last in the list
@font-face { font-family: 'my-dirty-font'; src: url('../fonts/my-dirty-font.eot'); src: url('../fonts/my-dirty-font.eot?#iefix') format('eot'), url('../fonts/my-dirty-font.woff') format('woff'), url('../fonts/my-dirty-font.ttf') format('truetype'), url('../fonts/my-dirty-font.svg') format('svg'); font-weight: normal; font-style: normal; }
If the ordering @ font-face looks similar, try switching to
@font-face { font-family: 'my-dirty-font'; src: url('../fonts/my-dirty-font.eot'); src: url('../fonts/my-dirty-font.eot?#iefix') format('eot'), url('../fonts/my-dirty-font.svg') format('svg'); url('../fonts/my-dirty-font.woff') format('woff'), url('../fonts/my-dirty-font.ttf') format('truetype'), font-weight: normal; font-style: normal; }
Meigo62
source share