forked from itscodenation/int-u2l6-23-24-student-exercises
-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathcode-solo.css
33 lines (19 loc) · 838 Bytes
/
code-solo.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
/* CSS styling for code solo */
/* 3. Select the sample-1 class. Using the display property, apply a value of flex. Using the justify-content property, apply a value of flex-start. */
/* 4. Select the sample-2 class. Using the display property, apply a value of flex. Using the justify-content property, apply a value of space-between. */
/* Add the styling for the spicy task below. */
/* The image should have a position property with value of fixed, a bottom property with a value of 10px, and a right property with a value of 10px. */
/** Styling for the items of Sample 1 **/
.item-1 {
margin: 5px;
padding: 5px;
border: 2px solid black;
background: orange;
}
/** Styling for the items of Sample 2 **/
.item-2 {
margin: 5px;
padding: 5px;
border: 2px solid black;
background: violet;
}