csstext-decorations

css text-decoration:none won't remove text underline


I have some text which is underlined but text-decoration:none won't remove text underline.

You can see that on the landing page of my website [here]<michelgrolet.fr>. You will find it easily : it's the only underlined text on the landing page.


Solution

  • Change Your Existing Code In style.css On 182th Line.

    .game-link h5, .game-link p {
        text-decoration: none !important;
        text-decoration-color: var(--white-l);
    }
    

    To ->>

    .game-link h5, .game-link p {
        text-decoration: inherit;
        text-decoration-color: var(--white-l);
    }
    

    OR

    Add Css -

    a.game-link {
        text-decoration: none;
    }