1. Home
  2. Css
  3. Arrow right

Pure css arrows using sudo elements. Arrow right.

#css#sudo
<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
Full Css cheatsheet