前端開發設置字體粗細


可用屬性值:lighter、bold、bolder、normal和100~900(100整數倍)

normal:400

bold:700

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

        <style type="text/css">
            .p1 {
                font-weight: lighter;
            }

            .p2 {
                font-weight: 100;
            }

            .p3 {
                font-weight: bold;
            }
        </style>

    </head>
    <body>
        <p class="p1">這是個段落標簽1</p>
        <p class="p2">這是個段落標簽2</p>
        <p class="p3">這是個段落標簽3</p>
    </body>
</html>

image


免責聲明!

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



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