Shapes with Square
<style>
* { box-sizing: border-box; }
.shape{
height: 180px;
width: 180px;
max-width:100%;
background-color:#dafd2b;
box-shadow: 0 0 6px rgba(0,0,0,0.2);
border: 5px solid white;
}
</style>
<div class="shape"></div>
.shape {
border-radius: 5px;
}
.shape {
border-radius: 25%;
}
.shape {
border-radius: 25% 25% 0 0;
}
.shape {
border-radius: 50%;
}
.shape {
border-radius: 50% 25%;
}
.shape {
border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}
.shape {
border-radius: 50% 50% 0;
}
.shape {
border-radius: 50% 0;
}
.shape {
border-radius: 50% 50% 0 0;
}
.shape {
border-radius: 70% 30%;
}
.shape {
transform: scale(1,0.5);
}
.shape {
transform: skew(18deg);
}