0

I have a foundation-icon which is a magnifying glass oriented from lower left to upper rightfoundationtion

This is not how nearly all sites display the icon (normally it is upper left to lower right, e.g., google):

Google search icon

Is there a method or CSS class to flip this?

Sebastian Simon
  • 16,564
  • 7
  • 51
  • 69
Mike Stephenson
  • 589
  • 5
  • 14

1 Answers1

1
.logo{
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
justinw
  • 3,586
  • 5
  • 25
  • 40
CreativeCreator
  • 210
  • 1
  • 9