forked from vladmaraev/lt2319-2023-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.html
40 lines (39 loc) · 886 Bytes
/
grid.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
<!doctype html>
<html lang="en">
<head>
<title>grid</title>
<meta charset="UTF-8" />
<style>
#container {
margin: 50px;
display: grid;
grid-template-columns: repeat(3, 100px);
grid-template-columns: repeat(auto, 100px);
}
#container.active > div:hover {
background-color: lightgoldenrodyellow;
cursor: cell;
}
#container > div {
line-height: 100px;
font-size: xxx-large;
border: 2px solid white;
background-color: whitesmoke;
text-align: center;
}
</style>
</head>
<body>
<div id="container" class="active">
<div>🦡</div>
<div>🍌</div>
<div>📖</div>
<div>🦋</div>
<div>🚌</div>
<div>💣</div>
<div>🐛</div>
<div>🫘</div>
<div>🦇</div>
</div>
</body>
</html>