Created
August 22, 2015 05:36
-
-
Save anonymous/d0f8a04ee6967c18bab5 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/gikiduhoya
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
<style id="jsbin-css"> | |
.smiley { | |
display: inline-block; | |
transform: rotateZ(30deg); | |
transform-origin: bottom right; | |
} | |
</style> | |
</head> | |
<body> | |
<span class="smiley">:)</span> | |
<script id="jsbin-source-css" type="text/css">.smiley { | |
display: inline-block; | |
transform: rotateZ(30deg); | |
transform-origin: bottom right; | |
} | |
</script> | |
</body> | |
</html> |
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
.smiley { | |
display: inline-block; | |
transform: rotateZ(30deg); | |
transform-origin: bottom right; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment