I created a link with an arrow next to it that should move 20px to the right when hovered over, using a transition of 1s. However, for some reason the transition is not affecting the arrow. Can anyone please assist me in figuring out why this is happening?
HTML
<a>Register now<i class="fa-solid fa-chevron-right"></i></a>
CSS
a{
transition: padding-left 1s;
}
a:hover{
text-decoration: underline;
}
a:hover i{
padding-left: 20px;
}