-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathstep-2.css
More file actions
52 lines (35 loc) · 1.05 KB
/
step-2.css
File metadata and controls
52 lines (35 loc) · 1.05 KB
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
/* Step-2 You can assign padding to all sides of a container by using the padding shorthand property. */
.content-left {
padding: 20 20 20 20 px;
}
/* Step 2 You can assign padding to all sides of a container by using the padding shorthand property. */
.header {
padding: 20 20 20 20 px;
}
/* Step-2 One option to get the container to fill the parent container is to use width: auto; */
.profile-image-container {
height:auto ;
width:auto ;
margin-bottom: auto;
background: #96F0F2;
}
/* Step-2 One option to get the container to fill the parent container is to use width: auto; */
.profile-links-container {
background: #12F3F7;
height:auto ;
width: auto;
}
/* Step-2 You can either use float left to get this element to in the desired location. */
.logo-container {
background: #4F4949;
height:auto ;
width: auto;
float: left;
}
/* Step-2 You can either use float right to get this element to in the desired location. */
.menu-container {
height:auto ;
width: auto;
float:right;
background: #4F4949;
}