test link stof

This commit is contained in:
awesomeuser 2023-07-07 19:58:14 +00:00
parent e436cbc8a9
commit 30255041b5

View file

@ -39,12 +39,28 @@
color: lightgray; color: lightgray;
} }
a:link::after { a:visited::after {
content: " (unvisited)"; content: " (visited)";
} }
a:visited::after { /* unvisited link */
content: ""; a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: blue;
} }
</style> </style>