-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss grid 4.html
43 lines (40 loc) · 1.32 KB
/
css grid 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name = "viewport"content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Compatible"content="ie-edge">
<title>css grid 4 </title>
</head>
<style>
.container{
display: grid;
grid-gap: 10px;
/*grid-template-columns: 100px 100px 100px;*/
grid-template-rows: 1fr 2fr 2fr;
grid-template-columns: repeat(auto-fit,minmax(300px,400px));
justify-content: center;
}
.box{
border: 2px solid brown;
background-color: coral;
padding: 10px;
}
</style>
<body>
<div class="container">
<div class="box">Item-1</div>
<div class="box">Item-2</div>
<div class="box">Item-3</div>
<div class="box">Item-4</div>
<div class="box">Item-5</div>
<div class="box">Item-6</div>
<div class="box">Item-7</div>
<div class="box">Item-8</div>
<div class="box">Item-9</div>
<div class="box">Item-10</div>
<div class="box">Item-11</div>
<div class="box">Item-12</div>
</div>
</body>
</html>