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;
|
||||
}
|
||||
|
||||
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>
|
||||
|
|
Reference in a new issue