Skip to content

Instantly share code, notes, and snippets.

@JGallardo
Created July 25, 2013 05:51
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JGallardo/6077195 to your computer and use it in GitHub Desktop.
Save JGallardo/6077195 to your computer and use it in GitHub Desktop.
This makes the "Copyleft symbol." Credit to the Stack Overflow user "Anonimo" for the help on the CSS http://stackoverflow.com/users/2178220/anonimo
<style>
.copy-left {
display: inline-block;
text-align: right;
margin: 0;
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
}
</style>
<p><span class="copy-left">&copy;</span><span>&nbsp;Copyleft</span></p>
@martyjelen
Copy link

Doesn't work on Internet explorer. Any suggestion ?

@smithnlp
Copy link

Thanks mate!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment