倒影

作者: 洛洛kkkkkk | 来源:发表于2017-04-18 19:20 被阅读0次
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title>倒影</title>
            <style type="text/css">
                .redDiv{
                    width: 200px;
                    height: 200px;
                    background-color: red;
                    color: white;
                    text-align: center;
                    font-size: 50px;
                    /*倒影
                     第一个值可以给方向
                     第二个值实体和倒影的间距*/
                    -webkit-box-reflect: below 5px linear-gradient(transparent 20px,green 100px);
                    
                }
            </style>
        </head>
        <body>
            <div class="redDiv">倒影</div>
        </body>
    </html>
    

    相关文章

      网友评论

          本文标题:倒影

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