-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblock_Gallery_challange_4.html
29 lines (23 loc) · 1.2 KB
/
block_Gallery_challange_4.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
<!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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css">
<title>Document</title>
</head>
<body>
<div class="flex flex-wrap h-screen ">
<div class="bg-blue-100 w-1/3 h-1/3 flex justify-center items-center">A</div>
<div class="bg-blue-200 w-1/3 h-1/3 flex justify-center items-center">B</div>
<div class="bg-blue-300 w-1/3 h-1/3 flex justify-center items-center">C</div>
<div class="bg-blue-400 w-1/3 h-1/3 flex justify-center items-center">D</div>
<div class="bg-blue-500 w-1/3 h-1/3 flex justify-center items-center">E</div>
<div class="bg-blue-600 w-1/3 h-1/3 flex justify-center items-center">F</div>
<div class="bg-blue-700 w-1/3 h-1/3 flex justify-center items-center">G</div>
<div class="bg-blue-800 w-1/3 h-1/3 flex justify-center items-center">H</div>
<div class="bg-blue-900 w-1/3 h-1/3 flex justify-center items-center">I</div>
</div>
</body>
</html>