test link stof
This commit is contained in:
parent
e436cbc8a9
commit
30255041b5
1 changed files with 20 additions and 4 deletions
24
index.html
24
index.html
|
@ -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>
|
||||||
|
|
Reference in a new issue