-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.css
73 lines (63 loc) · 1.19 KB
/
layout.css
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
*{
margin-top:20px;
margin-left: 0;
margin-right: 0;
padding: 0;
}
.one{
background-color: gray;
width:100%;
padding-top: 20px;
padding-bottom: 20px;
display: flex;
justify-content: space-evenly;
}
.three{
width: 15%;
height: 200px;
background-color: red;
}
.two{
background-color: black;
width: 100%;
padding-top: 20px;
padding-bottom: 20px;
}
.four{
background-color: grey;
width: 20%;
height: 200px;
display: inline-block;
margin-left: 4%;
}
/* * {
margin: 0px;
padding: 0px;
}
.one {
height : 300px;
width : 300px;
background-color : red;
padding: 50px;
border: 20px solid black;
margin: 50px;
box-sizing: border-box;
display: inline-block;
}
/* BORDER BOX HELPS TO USE THE SIZE OF HEIGHT AND WIDTH GIVEN FOR A BOX */
/* .two {
height: 100px;
width: 100px;
background-color: blue;
display: inline-block;
}
.parent {
/* height: 300px; */
/* width: 100%;
background-color: grey;
}
.ele {
height: 200px;
width: 50%;
background-color: red;
} */