CSS Uneven Border-Radius
by Brett
HTML
<div class="box">
</div>
CSS
.box {
height: 120px;
width: 120px;
background: red;
border-radius: 120% 0 120% / 35% 0;
}
by Brett
<div class="box">
</div>
.box {
height: 120px;
width: 120px;
background: red;
border-radius: 120% 0 120% / 35% 0;
}