Custom web font not working in IE9

后端 未结 4 854
梦如初夏
梦如初夏 2020-12-16 07:44

I downloaded a custom font (Gotham-Light.eot), but it doesn\'t work on Internet Explorer 9.

@font-face {
    font-family: Gotham-Light;
    src:         


        
4条回答
  •  离开以前
    2020-12-16 08:46

    For googlers: I had a problem with either long font name or conflict with already installed font. Anyway IE were the only browser having problems.

    I changed

    font-family: 'HelveticaLTUltraCompressedRegular';

    to

    font-family: 'HelveticaLTUCR';

    which solved my issue.

提交回复
热议问题