1. 程式人生 > >css3-文字陰影效果、凹凸效果

css3-文字陰影效果、凹凸效果

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <style>
        p{
            font-size: 150px;
            font-family: "Microsoft Yahei";
            text-align: center;
            line-height: 150px;
            font-weight: bold;
            /* 文字陰影: 水平位移 垂直位移  模糊程度  陰影顏色*/
            text-shadow: 30px 23px 31px #333;
        }
        /* text-shadow :文字陰影
           可以設定多個陰影
          每個陰影之間使用逗號隔開
           text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000;
        */
    </style>
</head>
<body>
        <p>我愛我的家鄉!</p>
        <i>我愛我的家鄉!</i>
</body>
</html>