-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHover_Img.html
61 lines (55 loc) · 1.12 KB
/
Hover_Img.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
img {
border: 20px double rgb(130, 190, 214);
border-radius: 50%;
align-content: center;
}
img:hover{
background-image: url("workplace.jpg");
}
td:hover{
background-color:aquamarine;
background-image: url("workplace.jpg");
}
table{
border-collapse: collapse;
border-spacing: 6px;
text-align: center;
}
td{
border-style: solid;
border-color: aquamarine;
border-width: 5px;
height:300px;
width: 300px;
}
</style>
<body>
<table align="center" >
<tr>
<td>
<img src="cybrer.jpg" alt="lol" height="100px">
</td>
<td>
<img src="lol.png" alt="lol" height="100px">
</td>
</tr>
<tr>
<td>
<img src="lor.jpg" alt="lol" height="100px">
</td>
<td>
<img src="workplace.jpg" alt="lol" height="100px">
</td>
</tr>
</table>
</body>
</html>