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

来源:4-2 CSS3文字与字体 嵌入字体@font-face

ThinkSummer

2015-02-05 20:47

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


写回答 关注

1回答

  • 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");

    }

    多写一个就可以了

    ThinkS...

    非常感谢!

    2015-03-17 21:52:09

    共 1 条回复 >

十天精通CSS3

本课程为CSS3入门教程,深刻详解CSS3知识让网页穿上绚丽装备

242554 学习 · 2623 问题

查看课程

相似问题