1. 程式人生 > >純HTML+CSS實戰之高階字型的實現

純HTML+CSS實戰之高階字型的實現

本次分享內容較為基礎,主要知識點便是css中盒子及文字陰影的應用

字型效果如下:

程式碼如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS高階字型的實現</title>
    <style>
        body{
            background-color: #cccccc;
        }
        .text{
            font-size: 50px;
            font-weight: bold;
            position: relative;
            color: #c30;
            text-shadow: 1px 2px 3px rgba(67,8,7,0.8);
        }
        .text2{
            font-size: 40px;
            margin-top: 50px;
            text-shadow: 2px 2px 4px #000;
        }
        .box{
            margin-top: 50px;
            /*box-shadow屬性向框新增一個或多個陰影*/
            box-shadow: 2px 2px 4px #000;
            width: 300px;
            height: 45px;
            line-height: 45px;
            font-size: 30px;
        }
    </style>
</head>
<body>
<div class="text">超實用的css程式碼塊</div>
<div class="text2">超實用的css程式碼塊</div>
<div class="box">超實用的css程式碼塊</div>
</body>
</html>