Answer the question
In order to leave comments, you need to log in
We need a css property that makes the animation right to left. So can you do it at all?
here the animation happens from right to left, but how to do it from left to right?
.top-main-nav ul li a::after {
margin-left: 10px;
content: "";
display: block;
width: 0;
height: 2px;
background: #000;
transition: width .3s;
}
.top-main-nav ul li a:hover::after {
width:calc(100% - 10px)
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question