Skip to content

Instantly share code, notes, and snippets.

@mrtag23
Created December 8, 2017 19:29
Show Gist options
  • Save mrtag23/f79a7076ff30530390b004484733ea1d to your computer and use it in GitHub Desktop.
Save mrtag23/f79a7076ff30530390b004484733ea1d to your computer and use it in GitHub Desktop.
Triangle with shadow
.tooltip {
background-color: #fff;
&:after {
bottom: -9px;
border: 8px solid;
border-color: transparent transparent #fff #fff;
box-shadow: -3px 3px 3px 0 #aaa;
content: "";
height: 0;
left: 50%;
position: absolute;
transform-origin: 0 0;
transform: rotate(-45deg) translateX(-50%);
width: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment