Search code examples
htmlcssunderline

Some of my text all over the website underline automatically


I'm not quite sure what's going on, but I don't want any text underline on my website and for some reason, it just got added automatically... any of you know how to fix it?

Is it because of the browser? The Stylesheet.css?

I'm really confuse since some of them are fine and other aren't...

Any help is really appreciated. Thanks

This is the website: cliniquedukine.com


Solution

  • You have wrapped parts of your HTML markup with <u> elements which have a default style of text-decoration: underline; which comes from the user agent's default stylesheet.

    I suggest amending the HTML markup to remove the <u> elements.