-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path#2 - Carrom.html
53 lines (53 loc) · 888 Bytes
/
#2 - Carrom.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
<div class="parent">
<div class="div1"></div>
<div class="div2"></div>
<div class="div3"></div>
<div class="div4"></div>
</div>
<style>
*{
margin:0
}
.parent {
display: grid;
background:#62374e;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
width:100%;
height:100%;
}
.div1 {
grid-area: 1 / 1 / 2 / 2;
background:#fdc57b;
height:50px;
width:50px;
margin-top:50;
margin-left:50;
}
.div2 {
grid-area: 1 / 2 / 2 / 3;
background:#fdc57b;
height:50px;
width:50px;
margin-top:50;
margin-left:100;
}
.div3 {
grid-area: 2 / 2 / 3 / 3;
background:#fdc57b;
height:50px;
width:50px;
margin-top:50;
margin-left:100;
}
.div4 {
grid-area: 2 / 1 / 3 / 2;
background:#fdc57b;
height:50px;
width:50px;
margin-top:50;
margin-left:50;
}
</style>