Skip to content

Snippet: Add Tilted Dividers to Menu Style One

.navbar-style-one .dropdown-menu > li > a > span:after {
    content: "";
    height: 24px;
    width: 1px;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
    transform: skew(-10deg);
}

.navbar-style-one .dropdown-menu > li:last-child > a > span:after {
    display: none;
}
Back To Top