css - how to flip glyphicon icon -


is there way flip glyphicon. found flip image css trick, not work glyphicon. please suggestions

like this

html

<a href="#" class="btn"><i class="icon-rotate icon-flipped"></i></a> 

css

.icon-flipped {     transform: scalex(-1);     -moz-transform: scalex(-1);     -webkit-transform: scalex(-1);     -ms-transform: scalex(-1); } 

or

http://fortawesome.github.io/font-awesome/examples/#rotated-flipped


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -