-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
79 lines (63 loc) · 1.29 KB
/
index3.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>CSS Grid</title>
<style>
.wrapper{
display: grid;
/*grid-template-columns: 1fr 1fr 1fr;*/
/*grid-template-columns: repeat(4,1fr 2fr);*/
grid-template-columns: repeat(3,1fr);
grid-gap: 1em;
/*grid-auto-rows: 100px; as it fixes the value so for making flexible see below*/
grid-auto-rows: minmax(100px,auto);
grid-gap: 1em;
justify-items: stretch;
align-items: stretch;
}
.nested{
display: grid;
grid-template-columns: repeat(3,1fr);
}
.wrapper > div{
background: #eee;
padding: 1em;
}
.wrapper > div:nth-child(odd){
background: #ddd;
}
.box1{
/*align-self: start;*/
grid-column: 1/3;
grid-row: 1/3;
}
.box2{
/*align-self: end;*/
grid-column: 3;
grid-row: 1/3;
}
.box3{
/*justify-self: end;*/
grid-column: 2/4;
grid-row: 3;
}
.box4{
grid-column: 1;
grid-row: 2/4;
border: 1px solid #333;
}
.nested > div{
border: #333 1px solid;
padding: 1em;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="box box1">Box 1</div>
<div class="box box2">Box 2</div>
<div class="box box3">Box 3</div>
<div class="box box4">Box 4</div>
</div>
</body>
</html>