M
M
mrWan2018-03-30 19:19:26
css
mrWan, 2018-03-30 19:19:26

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)
}

link to the sandbox https://codepen.io/anon/pen/OvvEqd
you need to make the bottom border appear from right to left

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
A person from Kazakhstan, 2018-03-30
@mrWan

https://codepen.io/topicstarter/pen/QmmxeW right?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question