Links

Hi! Can there be links that do not have underline below them?

In the default style sheet of pretty much every browser, the standard is for (unvisited) links to have blue text and underline text-decoration. We can override this with a simple rule…

a {
    text-decoration: none;
}
3 Likes

Thanks :slightly_smiling_face:

1 Like