Last active
August 29, 2015 14:03
-
-
Save srikanthjeeva/78908bf6173039f7871c to your computer and use it in GitHub Desktop.
CSS Tricks - Add a pointer
This file contains 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
/* 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