问答详情
源自:4-2 CSS3文字与字体 嵌入字体@font-face

如果我要一次性的定义多个字体怎么操作呢?

@font-face {
    font-family: "MOOC Font";
    src: url("http://www.imooc.com/Amaranth-BoldItalic.otf");
}


提问者:ThinkSummer 2015-02-05 20:47

个回答

  • lnmp
    2015-03-11 22:29:25
    已采纳

    @font-face {

        font-family: "font";

        src: url("http://www.imooc.com/Amaranth-BoldItalic.otf");

    }

    @font-face {

        font-family: "font1";

        src: url("http://www.imooc.com/Amaranth-BoldItalic1.otf");

    }

    多写一个就可以了