2css

字体属性

<style>
        body {
            font-family:'Microsoft YaHei';
            font-size: 22px;
            font-weight: 700;
        }
    </style>

文本颜色、对齐文本text-align、装饰文本text-decoration、文本缩进text-indent、行间距line-height

<style>
        body {
            /* text-decoration: underline; */
            /* text-decoration: none; */
            text-decoration:line-through;
        }
    </style>

猜你喜欢

转载自www.cnblogs.com/gao-chao/p/13378031.html
css