Last active
September 11, 2016 20:56
-
-
Save colynb/f161f1814d8d3380acbdfa027fb5fa18 to your computer and use it in GitHub Desktop.
CSS arrows w/borders
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
.box | |
background-color: #fff | |
border: solid 1px #ccc | |
border-radius: 8px | |
&::before, | |
&::after | |
border: solid transparent | |
content: "" | |
height: 0 | |
left: 50% | |
pointer-events: none | |
position: absolute | |
top: 100% | |
&::after | |
border-color: transparent | |
border-top-color: #fff | |
border-width: 40px | |
margin-left: -40px | |
&::before | |
border-color: transparent | |
border-top-color: #ccc | |
border-width: 41px | |
margin-left: -41px |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment