Animated Card Border | WordPress Bricks Builder Tutorial, Bricks Builder Tips and Tricks
In this tutorial, I'll show you How to Create Animated Border using Bricks Builder🔥,WordPress Bricks Builder Tutorial
🔰 CSS CLASS:
card-border-animation
🔰 CSS CODE:
.card-border-animation{
overflow: hidden !important;
justify-content: center;
align-items: center;
}
.card-border-animation:before{
content: '';
position: absolute;
width: 100px;
height: 160%;
background: linear-gradient(#ef32d9, #89fffd);
animation: animate 4s linear infinite;
}
@keyframes animate{
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(360deg);
}
}