-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflexbox.html
45 lines (44 loc) · 1.18 KB
/
flexbox.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flexbox</title>
<style>
body{
background-color: rgb(42, 46, 54);
}
.flex-container{
display: flex;
border: 2px solid black;
height: 50vh;
justify-content: flex-end;
/* align-items: center; */
flex-wrap: wrap;
}
.flex-items{
height: 30px;
width: 100px;
/* background-color: maroon; */
margin: 4px;
color:white;
border: 2px solid green;
}
.item1{
order: 5;
/* higher the order later wthy appear in the container */
/* flex-grow: 2; */
align-self: center;
}
</style>
</head>
<body>
<div class="flex-container">
<div class="flex-items item1">Box1</div>
<div class="flex-items item-2">Box2</div>
<div class="flex-items">Box3</div>
<div class="flex-items">Box4</div>
</div>
</body>
</html>