Created
November 1, 2012 20:32
-
-
Save NapoleonWils0n/3996296 to your computer and use it in GitHub Desktop.
css: triangle
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
/* Triangle */ | |
.arrow-up { | |
width:0px; | |
height:0px; | |
border-left:5px solid transparent; /* left arrow slant */ | |
border-right:5px solid transparent; /* right arrow slant */ | |
border-bottom:5px solid #2f2f2f; /* bottom, add background color here */ | |
margin:0 auto; /* centers the arrow within the parent container */ | |
font-size:0px; | |
line-height:0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment