-
Notifications
You must be signed in to change notification settings - Fork 0
/
pseudo.html
44 lines (43 loc) · 918 Bytes
/
pseudo.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pseudo class</title>
<style>
p:hover {background-color: black;
color:cyan;
}
/*.hover:hover {background-color: hsl(0, 0%, 0%);
color:#00ff0d;
*/
}
{
/*input:focus{
color:blanchedalmond;
background-color: beige;
font-size: 25px;
*/ }
/*a:hover{
color: black;
}
a:active {
color:brown;
}
a:visited {
color:darkgray;
}*/
a:nth-child(5n+1) {
background-color: midnightblue;
}
</style>
</head>
<body>
<!--pseudo class-->
<p class="hover">Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit ut dolore molestias sapiente omnis provident qui a quibusdam nostrum nihil!</p>
<input type="text" />
<hr />
<nav>
<a href="https://www.google.com /">google</a>
<a href="https://www.google.com /">google</a>
</nav>
</body>
</html>