-
Notifications
You must be signed in to change notification settings - Fork 0
/
tut28.html
65 lines (58 loc) · 1.81 KB
/
tut28.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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>
.container{
width: 100%;
height: 500px;
border: 3px solid black;
/* initaling the flex */
display: flex;
flex-direction: column;
flex-direction: row;
/* flex-wrap: wrap; */
/* wrap is used to fold the elements in of whole screen when we used to minimize or maximize the elemnts */
/* justify-content: ; is used to make in it center */
/* justify-content: center; */
/* justify-content: space-around; */
/* align-items: center; */
/* align-items: flex-end; */
}
.item{
background-color: lightblue;
border: 2px;
margin: 6px;
padding: 2px;
width: 150px;
height: 200px;
}
#item-1{
/* according to order the element is arranged */
/* order: 2; */
/* flex-grow: 3; */
}
#item-2{
/* flex-shrink: 3; */
/* flex-basis: 180px; */
}
#item-3{
align-self: center;
}
</style>
</head>
<body>
<h3>This is flexbox</h3>
<div class="container">
<div class="item" id="item-1">First</div>
<div class="item" id="item-2">Second</div>
<div class="item" id="item-3">Third</div>
<!-- <div class="item" id="item-4">Four</div> -->
<!-- <div class="item" id="item-5">Five</div> -->
<!-- <div class="item" id="item-6">Six</div> -->
</div>
</body>
</html>