Created
August 27, 2014 07:27
-
-
Save egulhan/dbc0631628f56dbccea8 to your computer and use it in GitHub Desktop.
Down arrow with just CSS
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
| .caret{ | |
| /* down-arrow begin */ | |
| display: inline-block; | |
| width: 0; | |
| height: 0; | |
| vertical-align: middle; | |
| border-top: 4px solid #000000; | |
| border-right: 4px solid transparent; | |
| border-left: 4px solid transparent; | |
| content: ""; | |
| /* down-arrow end */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment