arrow left
Pure css arrows using sudo elements. Arrow left.
<style>
.arrow-left{
display: block;
}
.arrow-left:after {
border-style: solid;
content: '';
position: absolute;
border-color: transparent #eb6300 transparent transparent;
border-width: 10px 10px 10px 0;
}
</style>
<span class="arrow-left"></span>
Output:
copy