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