-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
42 lines (36 loc) · 783 Bytes
/
layout.css
File metadata and controls
42 lines (36 loc) · 783 Bytes
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
*{
margin: 0px;
}
.one{
/* height: 300px; */
width: 100%;
height: 500px;
background-color: rgb(196, 248, 8);
/* padding: 50px; */
/* border: 20px solid blue; */
/* margin: 50px; */
/* box-sizing: border-box;
display: inline-block; */
/* padding-top: 50px;
padding-bottom: 50px; */
display: flex;
justify-content: space-evenly;
align-items: center;
}
.two{
height: 200px;
width: 20%;
background-color:red;
/* display: inline-block; */
/* margin-left: 4%; */
}
.three{
height: 200px;
width: 200px;
background-color: rgb(128, 0, 96);
/* padding: 50px; */
/* border: 20px solid blue; */
/* margin: 50px; */
/* box-sizing: border-box;
display: inline-block; */
}