I am trying to create a menu with curvy triangle pointers. I tried, but could not achieve this.
<div>
</div>
div{
position:relative;
left:20%;
height:250px;
width:150px;
border:1px solid #000;
top:10%;
background:#fff;
}
div:before, div:after{
position:absolute;
content:'';
left:-20px;
border:10px solid transparent;
border-right-color:#fff;
top:30px;
}
div:after{
left:-21px;
border-right-color:#000;
z-index:-1
}
Contact fiddle
I also added the image above for what I'm really looking for 
I recommend solutions without using SVG
source
share