字體屬性


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>

    <style>

        .box>p{

            /*字體顏色*/
            color: red;
            /*字體大小*/
            font-size: 30px;
            /*字體類型*/
            font-family: 仿宋;
            /*字體加粗 100-900 bold=800*/
            font-weight: bold;
            /* italic 傾斜*/
            font-style: italic;

        }

        em{
            font-style: italic;
        }


    </style>

</head>
<body>



<div class="box">
    <p>對酒當歌,人生幾何</p>
</div>

<em>呦呦鹿鳴</em>

</body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章