Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • David• 530

    @David404-dev

    Posted

    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.

    Marked as helpful

    0