Source Code:
(back to article)
Submit
Result:
Report an issue
99
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
›
⌄
⌄
⌄
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
style
>
.
main
{
display:
flex
;
align-items:
flex-start
;
width:
80
%
;
height:
300
px
;
padding:
5
px
;
background:
#1c87c9
;
}
.
main
div
{
flex:
1
;
padding:
15
px
0
;
background:
lightgray
;
text-align:
center
;
font-size:
28
px
;
color:
#666666
;
}
.
two
{
align-self:
center
;
}
</
style
>
</
head
>
<
body
>
<
div
class=
"main"
>
<
div
>1</
div
>
<
div
class=
"two"
>2</
div
>
<
div
>3</
div
>
</
div
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <style> .main { display: flex; align-items: flex-start; width: 80%; height: 300px; padding: 5px; background: #1c87c9; } .main div { flex: 1; padding: 15px 0; background: lightgray; text-align: center; font-size: 28px; color: #666666; } .two { align-self: center; } </style> </head> <body> <div class="main"> <div>1</div> <div class="two">2</div> <div>3</div> </div> </body> </html>