前端 字體樣式

字體樣式

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>文本屬性</title>
    <style>
        .box {
            width: 300px;
            height: 300px;
            background-color: orangered;
        }
        .box {
            /*大小*/
            font-size: 30px;
            /*顏色*/
            color: blue;
            /*字族*/
            font-family: "STSong", "新宋體", "Arial";
            /*字重: lighter | normal | bold | 100 ~ 900*/
            font-weight: 500;
            /*字體樣式*/
            font-style: oblique;
        }
        .box {
            /*文本劃線: underline  line-through  overline*/
            text-decoration: none;

            /*文本水平位置: left center right*/
            text-align: center;

            /*行高*/
            line-height: 300px;
        }
        .box {
            /*總體設置*/
            font: bold 20px/300px '黑體', 'Arial';
            color: darkcyan;
            text-align: left;
            
            /*首行縮進*/
            text-indent: 20px;
            /*字間距*/
            letter-spacing: 10px;
        }
    </style>
</head>
<body>
    <div class="box">
        文本ABC ab
    </div>
</body>
</html>
相關文章
相關標籤/搜索