How i can make link hover underline with transition ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How i can make link hover underline with transition ?

a:hover { text-decoration: underline; transition: all 1s; } this isn't working

16th May 2018, 2:07 PM
Shzz
Shzz - avatar
2 Answers
+ 3
I made an example using pseudo classes just for you, at start i thought about simmilar way to do it like you. https://code.sololearn.com/WPtgpV7zQ4pC/?ref=app
16th May 2018, 2:49 PM
Bartłomiej Kwak
Bartłomiej Kwak - avatar
+ 1
For an anchor, I often use border-bottom as an alternative to underlining the text itself. It allows extra padding and can even add some JS to make it fade in from right-left and vice versa. a { border-bottom: 1px solid transparent; transition: 1s;} a:hover { border-bottom: 1px solid #fff; transition: 1s; }
18th May 2018, 3:56 PM
Cobi Hopkins
Cobi Hopkins - avatar