x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
.flex-container {
7
display: flex;
8
display: flex;
9
width: 400px;
10
height: 250px;
11
background-color: lightgrey;
12
}
13
14
.flex-item {
15
background-color: cornflowerblue;
16
width: 60px;
17
min-height: 100px;
18
margin: 10px;
19
}
20
21
.item1 {
22
align-self: flex-start;
23
align-self: flex-start;
24
}