Can someone help me achieve this design:
https://i.stack.imgur.com/eBQ1a.png
I am attempting to create a double arrow using just one class. I have tried various methods, but nothing seems to be working for me.
If anyone has any suggestions or can point me in the right direction, it would be greatly appreciated.
.wrapper{
width: 250px;
height: 150px;
background:black;
}
.arrow1{
left:0px;
width: 0;
height: 0;
border-style: solid;
border-width: 37.5px 0 37.5px 75px;
border-color: transparent transparent transparent #007bff;
}
<div class="wrapper">
<div class="arrow1"></div>
</div>
https://jsfiddle.net/7mfquq2y/
Thank you.