css技巧---电子表体字体引入

1、字体下载

 https://files-cdn.cnblogs.com/files/lguow/digifaw.rar (免费分享,点个赞再走呗

2、引入

@font-face {
    font-family: digifaw;
    src: url('../../../common/font/digifaw.ttf');
}

3、使用

.total-number-shower {
    font-size: 1.2rem;
    text-align: right !important;
    color: #fb7d30;
    font-family: digifaw, serif;//使用电子表体字体
}

4、效果

原文地址:https://www.cnblogs.com/lguow/p/14481084.html