在看到Alex的答案出现翻转的线索后,我发现只翻转背景而不是整个元素的方法。谢谢亚历克斯的回答
HTML
<div ><a href="">Previous</a></div><div ><a href="">Next</a></div>
CSS
.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);}


