Skip to content

Instantly share code, notes, and snippets.

@Cbarua
Created January 10, 2022 19:22
Show Gist options
  • Save Cbarua/ff2f4d2d5649d164b6ad054a589d82f6 to your computer and use it in GitHub Desktop.
Save Cbarua/ff2f4d2d5649d164b6ad054a589d82f6 to your computer and use it in GitHub Desktop.
.border-animation {
position: relative;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
transition: padding .2s, border-color .2s;
}
.border-animation::before,
.border-animation::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 0;
transition: height .2s, border-color 0s;
}
.border-animation::before {
top: 0;
border-left: 1px solid transparent;
}
.border-animation::after {
border-right: 1px solid transparent;
}
.border-animation:hover {
border-color: #000;
}
.border-animation:hover::before,
.border-animation:hover::after {
height: 100%;
transition-delay: .1s;
border-color: #000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment