x
1
2
<html>
3
<head>
4
<style>
5
.flex-container
6
{
7
display: flex;
8
background-color: DodgerBlue;
9
border:orange dashed 2px;
10
width:100%;
11
height:250px;
12
align-items:baseline;
13
}
14
15
.item
16
{
17
background-color: #f1f1f1;
18
margin: 10px;
19
padding: 20px;
20
font-size: 20px;
21
}
22
23
.one
24
{
25
margin-top:30px;
26
}
27
</style>
28
</head>
29
<body>
30
31
<div class="flex-container">
32
<div class="item one">1</div>
33
<div class="item">This <br> is <br> element <br> maybe <br> number <br> two</div>
34
<div class="item">This is elementmaybe number three</div>
35
</div>
36
37
38
</body>
39
</html>