i want to make a shape like this using CSS 3, but i couldn't rotate the border like this.
Is there any way to make this using css only?
i thought about a class like this:
border: 0px solid #1C6EA4;
border-radius: 40px 0px 0px 0px;
-ms-transform: rotate(-20deg); /* IE 9 */
-webkit-transform: rotate(-20deg); /* Safari */
transform: rotate(-20deg);
but i didn't get the wanted result
UPDATE:
in found this but it still needs some edits to be like the wanted one
-webkit-clip-path: polygon(30% 0%, 100% 0, 100% 30%, 100% 100%, 70% 100%, 30% 100%, 14% 66%, 0% 30%);
clip-path: polygon(30% 0%, 100% 0, 100% 30%, 100% 100%, 70% 100%, 30% 100%, 14% 66%, 0% 30%);