<div class="container">
<div class="box zig one">1</div>
<div class="box zig two">2</div>
<div class="box zig three">3</div>
</div>
<div class="container">
<div class="box scooped one">1</div>
<div class="box scooped two">2</div>
<div class="box scooped three">3</div>
</div>
.container {
display: flex;
gap: 15px;
margin:15px;
}
.box {
width:200px;
display:grid;
place-content:center;
font-size:35px;
font-weight:bold;
aspect-ratio:1;
border:1px solid;
margin-bottom:5px;
}
.zig.one {
background:
conic-gradient(from -45deg at bottom,green,blue 1deg 89deg,green 90deg) 50%/80px 100% no-repeat;
}
.zig.two {
background:
conic-gradient(from -45deg at bottom,green,blue 1deg 89deg,green 90deg) 50%/80px 100%;
}
.zig.three {
border:none;
background:linear-gradient(135deg,#1f005c, #5b0060, #870160, #ac255e, #ca485c, #e16b5c, #f39060, #ffb56b);
-webkit-mask:
conic-gradient(from -45deg at bottom,#0000,#000 1deg 89deg,#0000 90deg) 50%/80px 100%;
}
.scooped.one {
background:
radial-gradient(40px at bottom,green 98%,blue) 50% / 74.00px 100% no-repeat;
}
.scooped.two {
background:
radial-gradient(40px at bottom,green 98%,blue) 50% / 74.00px 100%;
}
.scooped.three {
border:none;
background:linear-gradient(135deg,#1f005c, #5b0060, #870160, #ac255e, #ca485c, #e16b5c, #f39060, #ffb56b);
-webkit-mask:
radial-gradient(40px at bottom,#0000 98%,#000) 50% / 74.00px 100%;
}
body {
background: linear-gradient(90deg,#ddd,#fff);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.