Gradient color in bottom border | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Gradient color in bottom border

How can I get a gradient colors in the bottom border of any tag? Like in this code I have to put under "Login" from yellow to darkpink. https://code.sololearn.com/WewzKEB0iJKl/?ref=app

31st Mar 2021, 4:19 AM
Pyking
Pyking - avatar
5 Answers
+ 3
The following works for me in Edge and Chrome on my laptop: .login form input { margin-bottom:30px; width:300px; height:30px; border-width:0px; border-bottom-width: 2px; border-bottom-style: solid; border-image-slice: 1; border-image-source: linear-gradient(to right, #d91acc, #5288ff); } I just replaced your CSS for the .login form input elements with the above. I made the line 2px thick instead of your 1px just to make the gradient more obvious. If you want it 1px wide but find the gradient is too subtle, I guess you could make the 2 colours more different. The above changes were adapted from the CSS used in the following article: https://css-tricks.com/animating-a-css-gradient-border/
31st Mar 2021, 4:40 AM
Josh Greig
Josh Greig - avatar
+ 3
https://code.sololearn.com/W8q3WQ3ngefp/?ref=app
19th Apr 2021, 6:45 AM
Karine
Karine - avatar
+ 1
Thx, it is working
31st Mar 2021, 4:46 AM
Pyking
Pyking - avatar
+ 1
يوسف الجز
31st Mar 2021, 6:05 AM
سعيد محمد
سعيد محمد - avatar
0
سعيد محمد
31st Mar 2021, 6:04 AM
سعيد محمد
سعيد محمد - avatar