12 lines
166 B
CSS
12 lines
166 B
CSS
nav a:link {
|
|
text-decoration: none;
|
|
}
|
|
nav a:visited {
|
|
text-decoration: none;
|
|
}
|
|
nav a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
nav a:active {
|
|
text-decoration: none;
|
|
} |