-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimjer7.html
110 lines (91 loc) · 2.58 KB
/
primjer7.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="hr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Primjer 7 - pseudo klase</title>
<style>
a:link {
color: lightsalmon;
background-color: lawngreen;
font-weight: bold;
font-size: 32px;
}
a:visited {
color: magenta;
background-color: yellow;
}
/*
PAZITI NA POREDAK:
1 2 34
'love hate'
L V H A (link, visited, hover, active)
*/
a.hovact:hover {
text-decoration: green wavy underline;
background-color: yellow;
}
a.hovact:active {
color: white;
background-color: red;
text-decoration: underline;
}
a.vrsta1:link {
color: black;
}
a.vrsta1:visited {
color: #0000CC;
}
a.vrsta1:hover {
text-decoration: green wavy underline;
}
a.vrsta1:active {
background-color: yellow;
color: black;
}
a.vrsta2 {
text-decoration: underline;
}
a.vrsta2:link {
color: #000000;
}
a.vrsta2:visited {
color: red;
}
a.vrsta2:hover {
background-color: purple;
color: #ffffff;
text-decoration: underline dotted;
}
a.vrsta2:active {
background-color: blue;
color: white;
}
</style>
</head>
<body>
<h1>Primjer 7a - pseudo klase za linkove</h1>
<ul>
<li><a href="https://www.algebra.hr/">Algebra</a></li>
<br>
<li><a href="https://www.google.com" target="_blank">Google</a></li>
</ul>
<h1>Primjer 7b - pseudo klase za hover i active</h1>
<strong><pre>PAZITI NA POREDAK:
'love hate' < podsjetnik za lakše zapamtiti
1 2 34 < redoslijed primjene
L V H A (link, visited, hover, active)
</pre></strong>
<ul>
<li><a class="hovact" href="https://www.algebra.hr/">Algebra</a></li>
<br>
<li><a class="hovact" href="https://www.google.com" target="_blank">Google</a></li>
</ul>
<h1>Primjer 7c - kombinacija pomoću klasa - klase vrsta1 i vrsta2</h1>
<ul>
<li><a class="vrsta1" href="https://www.algebra.hr/">Algebra</a></li>
<br>
<li><a class="vrsta2" href="https://www.google.com" target="_blank">Google</a></li>
</ul>
</body>
</html>