前端开发字体设置举例

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>我是中国人</title>

        <style>
            a {
                font: 700 20px "microsoft yahei";

                display: block;
                width: 200px;
                height: 50px;

                background-color: red;

                /* 控制文本 垂直方向居中 */
                line-height: 50px;

                /* 控制文本水平方向居中 */
                text-align: center;

                letter-spacing: 30px;

                text-decoration: none;
            }
        </style>
    </head>
    <body>
        <a href="">确认</a>
    </body>
</html>
image
原文地址:https://www.cnblogs.com/zhangxuechao/p/13791103.html