Is there a way to center the texts of multiple flex items vertically, so that the center of the paragraph is at the same position for all of them? The height and width of the text is fixed and should not be adjusted
.container {
display: flex;
flex-direction: row;
gap: 20px;
}
.child {
background: red;
width: 50px;
}
<div class='container'>
<div class='child'>
<p>Lorem </p>
</div>
<div class='child'>
<p>Lorem ipsum</p>
</div>
<div class='child'>
<p>Lorem ipsum dol</p>
</div>
</div>