15、@font face、font怎么设置

2022-06-02  本文已影响0人  小黄不头秃

@font face

@font-face:可以将服务器中的字体直接提供给用户

<style>
        @font-face{
            /* 指定字体名称 */
            font-family:"my-font";
            /* 在服务器中的位置 */
            src: url('');
        }
    </style>

font 相关字体的样式:

语法:font:字体大小/行高 字体族

<style>
        p{
            color: red;
            font-size: 60px;
            font-family: Courier,serif;
            line-height: 2;
            font-weight: bolder;
            text-align: center;
            border: blue 1px solid;
            text-decoration: underline;
        }
    </style>
上一篇下一篇

猜你喜欢

热点阅读