Skip to content

Instantly share code, notes, and snippets.

@colynb
Last active September 11, 2016 20:56
Show Gist options
  • Save colynb/f161f1814d8d3380acbdfa027fb5fa18 to your computer and use it in GitHub Desktop.
Save colynb/f161f1814d8d3380acbdfa027fb5fa18 to your computer and use it in GitHub Desktop.
CSS arrows w/borders
.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