美文网首页
css字体引入

css字体引入

作者: 时子释 | 来源:发表于2019-05-07 14:30 被阅读0次

    1.使用@font-face{}

    @font-face

    {

    font-family: myFirstFont;

    src: url('Sansation_Light.ttf'),

       url('Sansation_Light.eot'); /* IE9 */

    }

    2.使用中文字体需要.ttf格式

    3.使用less定义类

    .fontFace(@name,@url){

        @font-face {

            font-family: '@{name}';

            src: url('@{rootFont}@{url}');

        }

    }

    相关文章

      网友评论

          本文标题:css字体引入

          本文链接:https://www.haomeiwen.com/subject/ntveoqtx.html