Created
July 25, 2013 05:51
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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">©</span><span> Copyleft</span></p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Doesn't work on Internet explorer. Any suggestion ?