前端 字體樣式


字體樣式

<!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>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM