Font-face not working in IE, otf font

后端 未结 5 1890
鱼传尺愫
鱼传尺愫 2021-01-02 07:34

I know this was asked multiple times, but I couldn\'t get it to work after trying them. This is the simple CSS I am using to import a custom font. Also, I am using this with

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-02 08:04

    Try using .eot file format for Internet Explorer. Something like:

    @font-face {
        font-family: Montserrat-Black;
        src: url('Montserrat-Black.eot');
        src: url('Montserrat-Black.otf');
    }
    

提交回复
热议问题