Created
October 4, 2011 23:02
-
-
Save mcls/1263108 to your computer and use it in GitHub Desktop.
CSS Triangles test
This file contains 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
/** | |
* CSS Triangles test | |
*/ | |
body { | |
background-color: #C0DFEC; | |
} | |
.funky { | |
width: 0px; | |
height: 0px; | |
background: transparent; // #C0DFEC; | |
border: 30px solid transparent; | |
border-top-width: 10px; | |
border-right-color: #90AFBC; | |
// border-top: none; | |
border-left:none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment