How To Remove Underline From A Link In CSS – HTML Style Guide
Maybe your like
If you're a web developer, you've probably wanted to get rid of the default underline that appears when you add a link to a page.
Fortunately, just like other elements on a web page, you can style the anchor tags responsible for displaying a link.
In this article, I will show you how to remove the underline from a link with CSS. I will also show you the four states links can be in, and how to remove the underline for each one.
How to Remove Underline from a Link in CSS
By default, this is how the link tag appears in the browser: 
Firstly, it is important to know that the link tag (anchor tag) can be in 4 different states called pseudo-classes:
- a:link: the regular state of the link when it is not active, visited, or hovered on
- a:visited: when the link has been clicked by the user, that is, visited
- a:hover: when the user is hovering on the link
- a:active: when the user is clicking on the link
N.B.: The states (pseudo-classes) must appear in the order listed above due to the cascading nature of CSS.
To finally remove the default underline of the link, you can target all the pseudo-classes and assign them a text-decoration property of none.
<p>This is a <a href="#">link</a></p> a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; }
You can also remove the default underline all in one with the anchor element selector:
a { text-decoration: none; }
You can play with the 4 pseudo-classes of the link tag with this pen:
Conclusion
I hope this article helps you learn how to remove the default underline from links in CSS.
If you find the article helpful, don’t hesitate to share it with your friends and family.
Thanks for reading.
Tag » A Link Without Underline Css
-
How To Remove The Underline From Links In CSS - HubSpot Blog
-
CSS Styling Links - W3Schools
-
Remove Blue Underline From Link - Css - Stack Overflow
-
How To Remove Underline From A Link In HTML? - Tutorialspoint
-
How To Remove Underline For Anchors Tag Using CSS? - GeeksforGeeks
-
Remove The Underline From Hyperlink Text - Microsoft Support
-
How To Create A Link With No Underline In HTML - Computer Hope
-
Css Link Underline Disable Code Example
-
Remove Underline On A Link Using CSS - YouTube
-
Remove Blue Underline From Link In CSS | Delft Stack
-
How To Remove Underline From Link In Html Without Css?
-
Remove Underline From Link HTML
-
Remove Underline From CSS Link - Programmers Portal
-
HTML And CSS Tutorial: Removing Links Underline