Image of what I want to accomplish:
Here's the HTML fragment I'm using:
<section class="card button ">
<span class="arrow">More Work</span>
</section>
This is my CSS. I looked at some things online and tried to play with it on jsbin but I need something that looks more like a button.
.button span{
background-color: gold;
width: 40%;
height: 30%;
}
.button span::after{
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 0;
border-left: 20px solid black;
border-top: 20px solid black;
border-bottom: 20px solid black;
}
.button span::before{
content: "";
position: absolute;
right: -20px;
bottom: 0;
width: 0;
height: 0;
border-left: 20px solid black;
border-top: 20px solid black;
border-bottom: 20px solid black;
}