How to Remove the Underline from Links in CSS

Download Now: Free HTML & CSS Coding Templates
Anna Fitzgerald
Anna Fitzgerald

Published:

In web design, every detail matters — including your links.

remove underline from link css

Like any other element, links can be styled with CSS properties. With CSS, you can change their color, background, and font size. You can even remove the underline that appears below links.

Download Now: 50 Code Templates [Free Snippets]

How you write that CSS depends on what state the links are in. These states, also known as pseudo-classes, are CSS classes based on user activity. Below the four pseudo-classes are defined.

a:link — when the user has not visited, hovered, or clicked on a link

a:visited — after the user has visited the link

a:hover — when the user hovers their mouse over the link

a:active — as the user is clicking on the link

By default, the underline will appear beneath links in every pseudo-state: when hovered over, clicked on, visited, or none of the above. This is shown in the demo below:

gif of a cursor clicking an underlined hyperlink

To remove the underline from links, you can use the CSS text-decoration property. Below we’ll walk through how to define this property to completely remove the underline from links on your site.

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

50 Free Coding Templates

Free code snippet templates for HTML, CSS, and JavaScript -- Plus access to GitHub.

  • Navigation Menus & Breadcrumbs Templates
  • Button Transition Templates
  • CSS Effects Templates
  • And more!
Loading your download form

You're all set!

Click this link to access this resource at any time.

Access now
Learn more
Featured Resource

25 HTML & CSS Coding Hacks

Fill out the form to access your coding tips and templates.

The process of removing the underline is really that simple. Let’s take a look at the code altogether, then check out how it looks on the front end.

Here’s the CSS:

a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: none; } a:active { text-decoration: none; }

Order is important here — a:link and a:visited must come first, then a:hover, then a:active.

Here’s the HTML:

<p><b><a rel="noopener" target="_blank" href="default.asp" target="_blank">This is a link</a></b> that appears within a paragraph.</p>

Here’s the result:

See the Pen Remove Underline From Link With CSS 1 by Christina Perricone (@hubspot) on CodePen.

It’s also possible to toggle the underline to display only when the link is hovered and click. Do this with the rule text-decoration: underline; like so:

See the Pen Remove Underline From Link With CSS 2 by Christina Perricone (@hubspot) on CodePen.

How to Remove the Underline from Links in CSS in Bootstrap

The process to remove the underline from links differs slightly if you’re using Bootstrap CSS in your project. Let’s briefly discuss the process for Bootstrap sites.

By default in Bootstrap, links only show the underline when they are in hover or active state. Meaning, as a visitor hovers over or clicks on a link, it will show the underline. Otherwise, the underline will not show in links, even if they’ve been visited. Also, links defined by the Bootstrap button class never show the underline.

Code demo showing hover and active link state with the underline in Bootstrap

To remove the underline in links, no matter their state, you need to add some CSS.

Here’s the CSS:

a:hover { text-decoration: none; } } a:active { text-decoration: none; }

Here’s the HTML:

<p><b><a rel="noopener" target="_blank" href="default.asp" target="_blank">This is a link</a></b> that appears within a paragraph. Below is a link defined by Bootstrap's button class.</p> <a class="btn btn-info" rel="noopener" target="_blank" href="#" role="button">Link</a>

Here’s the result:

See the Pen Remove Underline From Link With CSS - Bootstrap by Christina Perricone (@hubspot) on CodePen.

Styling Links with CSS

Removing the underline in links is one of the most common questions from beginner front-end coders. The good news is the process is simple with the text-decoration property. You just need a little bit of knowledge of HTML and CSS to pull it off.

Editor's note: This post was originally published in July 2020 and has been updated for comprehensiveness.

New Call-to-action

Related Articles

We're committed to your privacy. HubSpot uses the information you provide to us to contact you about our relevant content, products, and services. You may unsubscribe from these communications at any time. For more information, check out our Privacy Policy.

Dozens of free coding templates you can start using right now

CMS Hub is flexible for marketers, powerful for developers, and gives customers a personalized, secure experience

START FREE OR GET A DEMO