How to flip background image using CSS?
问题 How to flip any background image using CSS? Is it possible? currenty I'm using this arrow image in a background-image of li in css On : visited I need to flip this arrow horizontally. I can do this to make another image of arrow BUT I'm just curious to know is it possible to flip the image in CSS for :visited 回答1: You can flip it horizontally with CSS... a:visited { -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms