码迷,mamicode.com
首页 > Web开发 > 详细

特效 css3 渐变背景框

时间:2019-08-19 13:07:56      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:play   背景   hit   col   lex   特效   pos   splay   pad   

.box{   子级
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-content: center;
    background: #1B6D85;
}

.box::before{
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: white;
    z-index: -1;
}

.box::after{
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: white;
    z-index: -2;
    filter: blur(60px);
}

.box::before,
.box::after{
    background: linear-gradient(235deg,#89ff00,#1b6d85,#00bcd4);
}

.content{  父级
    color: white;
    padding: 20px;
    
}

 

特效 css3 渐变背景框

标签:play   背景   hit   col   lex   特效   pos   splay   pad   

原文地址:https://www.cnblogs.com/xiaozhang666/p/11376184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!