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;
}
a:link::after {
content: " (unvisited)";
a:visited::after {
content: " (visited)";
}
a:visited::after {
content: "";
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: blue;
}
</style>