CSS实现底部弧度效果--卡⽚样式效果图展⽰
代码部分
代码说明、注解
使⽤了 CSS 的⼀些属性:
:after 伪类
position 定位
border-radius 圆⾓边框
linear-gradient 背景颜⾊渐变
display: flex;flex 布局
box-shadow 盒⼦阴影
html 代码
<div class="card-wrap">
<div class="card-box">
<div class="card-info">content</div>
</div>
</div>
css 代码
.card-wrap{
width: 100%;
height: 188px;
position: relative;
z-index: -1;
overflow: hidden;
}
css特效文字.card-wrap:after{
width: 140%;
height: 168px;
position: absolute;
left: -20%;
top: 0;
z-index: -1;
content:'';
border-radius: 0 0 50% 50%;
background:linear-gradient(144deg, #3c9cef 0%, #5f6bfd 100%); }
.card-box{
position: absolute;
bottom: 10px;
width: 100%;
.card-info{
margin: auto;
width: 92%;
height: 92px;
display: flex;
align-items: center;
justify-content: center;
background: #ffffff;
box-shadow: 0 4px 8px 0 rgba(190, 195, 199, 0.5);
border-radius: 8px;
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论