Skip to content

Instantly share code, notes, and snippets.

@Ibochkarev
Created September 11, 2015 05:52
Show Gist options
  • Save Ibochkarev/190f82c023ebe4bda473 to your computer and use it in GitHub Desktop.
Save Ibochkarev/190f82c023ebe4bda473 to your computer and use it in GitHub Desktop.
CSS Triangle li a
.nav-pills > li.active > a:after{
content:"";
height:0;
width:0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-bottom: 15px solid #344364;
position:absolute;
bottom:0;
left:43%;
margin:0 0 0 -3px;
z-index:100;
background-color: transparent;
transition: all 250ms ease 0s;
-webkit-transform: scale(0);
transform: scale(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment