-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexbox1.css
More file actions
44 lines (38 loc) · 815 Bytes
/
flexbox1.css
File metadata and controls
44 lines (38 loc) · 815 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
41
42
43
44
#container {
height: 400px;
width: 400px;
background-color: white;
border: 2px solid lightseagreen;
border-radius: 10px;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
}
.box {
height: 100;
width: 100;
background-color: gray;
border: 2px solid black;
border-radius: 10px;
font-size: 50px;
text-align: center;
}
#navbar {
height: 50px;
width: 900px;
background-color: pink;
border: 2px solid lightseagreen;
border-radius: 10px;
display: flex;
justify-content: flex-start;
align-content: center;
}
.option {
height: 50px;
width: 80px;
border-radius: 10px;
margin-left: 5px;
font-size: 24px;
line-height: 50px;
}