Created
May 27, 2011 04:14
-
-
Save Takazudo/994627 to your computer and use it in GitHub Desktop.
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
/* make pure css triangle */ | |
.cssTriangle{ | |
display:block; | |
height:20px; | |
position:relative; | |
overflow:hidden; | |
} | |
.cssTriangle span{ | |
position: absolute; | |
width: 0; | |
height: 0; | |
left: 60px; | |
top: -1px; | |
border:17px solid; | |
border-color:#8f8f8f transparent transparent transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment