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
  • 18,263
  • 7
  • 55
  • 75
Mike Stephenson
  • 649
  • 6
  • 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,856
  • 5
  • 26
  • 41
CreativeCreator
  • 220
  • 1
  • 9