Skip to content

Instantly share code, notes, and snippets.

@egulhan
Created August 27, 2014 07:27
Show Gist options
  • Select an option

  • Save egulhan/dbc0631628f56dbccea8 to your computer and use it in GitHub Desktop.

Select an option

Save egulhan/dbc0631628f56dbccea8 to your computer and use it in GitHub Desktop.
Down arrow with just CSS
.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