Created
April 22, 2012 15:47
-
-
Save valhead/2464778 to your computer and use it in GitHub Desktop.
Basic CSS transform
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
| /** | |
| * Basic CSS transform | |
| */ | |
| body { | |
| background: #333; | |
| } | |
| div { | |
| width:200px; | |
| height:100px; | |
| background:#ff00ff; | |
| position:absolute; | |
| top:100px; | |
| left:100px; | |
| transform: rotate(20deg) skewX(30deg); | |
| } | |
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
| <!-- content to be placed inside <body>…</body> --> | |
| <div></div> |
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
| {"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment