x
<html>
<head>
<style>
.flex-container {
display: flex;
flex-direction: row;
align-items: baseline;
background-color: dodgerblue;
height: 200px;
}
.flex-container > div {
background-color: #f1f1f1;
padding: 15px;
margin: 10px;
font-size: 18px;
}
</style>
</head>
<body>
<h1>CSS align-items: baseline</h1>
<p>When flex-direction is set to row and align-items is
set to baseline, elements will be aligned to container baseline.</p>
<div class="flex-container">
<div>1</div>
<div>2<br>2</div>
<div>3</div>
</div>
</body>
</html>