-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflexBox.html
More file actions
45 lines (42 loc) · 1.08 KB
/
flexBox.html
File metadata and controls
45 lines (42 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container{
display: flex;
/* flex-direction: column-reverse; */
/* flex-wrap: wrap; */
/* flex-flow: row wrap; */
/* justify-content: center;
height: 400px;
align-items:center; */
/* align-content: space-between; */
background-color: blueviolet;
height: 200px;
}
.container div {
background-color: #f1f1f1;
width: 400px;
margin: 10px;
padding: 20px;
font-size: 30px;
}
</style>
</head>
<body>
<div class="container">
<div>1</div>
<div style="align-self: flex-start;">2</div>
<div style="align-self: flex-end;" >3</div>
<div >4</div>
<!-- <div>5</div> -->
<!-- <div>6</div>
<div>7</div>
<div>8</div>
<div>9</div> -->
</div>
</body>
</html>