@Juan2579Submitted over 2 years ago
Hello!, I have a question that I would like to receive some help. In the transform and stand out sections, I don´t know how to give that kind of underline to the a href link that says "LEARN MORE".
Hello!, I have a question that I would like to receive some help. In the transform and stand out sections, I don´t know how to give that kind of underline to the a href link that says "LEARN MORE".
You can use the border-bottom property in css for those links and when you hover over those links you can also change the color.
For example:
.learn-more-link { border-bottom: 5px solid pink; }
.learn-more-link:hover { border-bottom: 5px solid orange; }
If you don't want the colors to change instantly, check out the transition property.