JSFiddle - React, Tailwind, and code Playground

by Aleksandra Nikolic

HTML

<div class="prev"><a href="">hello</a></div>
<div class="next"><a href="">hello</a></div>

CSS

body {padding:2em}
.next a, .prev a {width:200px;background:#fff}
.next {float:left}
.prev {float:right}
.prev a:before,
.next a:before {
    content:"";
    width:16px;
    height:16px;
    margin:0 5px 0 0;
    background:url(http://i.stack.imgur.com/ah0iN.png) no-repeat 0 0; display:inline-block
}


.next a:before {
    margin:0 0 0 5px;
    /*transform:scaleX(-1);*/

}