前端開發設置字體粗細

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

normal:400html

bold:700spa

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

相關文章
相關標籤/搜索