美文网首页
凹凸文字效果

凹凸文字效果

作者: 琪33 | 来源:发表于2018-04-25 10:53 被阅读0次
    <style>
            body{
                background-color: #666;
            }
            
            p{
                font-size:120px;
                text-align: center;
                font-weight: bold;
                font-family: "Microsoft Yahei";
                color:#666;
            }
            /* text-shadow :文字阴影
                可以设置多个阴影
               每个阴影之间使用逗号隔开
                text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000;
             */
            .tu{
                text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000;
            }
    
            .ao{
                text-shadow: -1px -1px 1px #000, 1px 1px 1px #fff;
            }
        </style>
    </head>
    <body>
        <p class="ao">苍茫的天涯我的爱</p>
        <p class="tu">苍茫的天涯我的爱</p>
    </body>
    

    相关文章

      网友评论

          本文标题:凹凸文字效果

          本文链接:https://www.haomeiwen.com/subject/qzldlftx.html