I'm attempting to remove the underlines from all the links I've visited on a website. In my CSS file, I added
nav li a:visited {
text-decoration: none;
}
The word "visited" appears as white text in Sublime Text, indicating that the syntax is not being recognized. I also experimented with other pseudo-classes such as
a:hover {
color: #FF00FF;
}
However, the term "hover" is also not being identified. It's worth noting that all of my other CSS rules are functioning properly. Is there something obvious here that I am overlooking?