CSS shapes

Sexy round corners​ flower from /1 32 2 Sexy round corners flowers 33

by jshacker

HTML

<div id="shape"></div>

CSS

#shape {
  background-color: red;
  width: 0;
  height: 0;
  border: 60px solid red;
  border-radius: 10px;
  margin: 25px auto;
  box-shadow: 0 140px 0 green, 0 280px 0 blue;
}

JavaScript

/* 2 Sexy round corners flowers 
    check the amount of the x and y in box shadow of ::after element is used */