Skip to content

Instantly share code, notes, and snippets.

@srikanthjeeva
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save srikanthjeeva/78908bf6173039f7871c to your computer and use it in GitHub Desktop.
Save srikanthjeeva/78908bf6173039f7871c to your computer and use it in GitHub Desktop.
CSS Tricks - Add a pointer
/* Display An arrow mark */
.div:before{
content: "";
display: block;
position: relative;
top: 20px;
left: -20px;
width: 0;
height: 0;
border: solid 10px transparent;
border-right-color: #DAD5C1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment