Source Code: (back to article)
<!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>