css a without underline code example

Example 1: remove underline from link css

a, a:hover, a:focus, a:active {
      text-decoration: none;
      color: inherit;
 }

Example 2: css no underline

#Just set text decoration to none
.a {
    text-decoration: none;
}

Example 3: remove underline html

<a style="text-decoration: none;"></a>

Example 4: how to not underline links in css

a {
    text-decoration: none;
}

Example 5: how to remove underline from list item in html

text-decoration: none; /* remove underline in text ; put this style in <a>
container; ie : link's container */
list-style : none; /* remove bullet points from list */

Tags:

Css Example