I am trying to use flexbox to make two images side by side have the same height and align the text under the image. Can anyone assist me with this issue?
Here is the code I am currently using:
.row{
display:flex;
}
.cell img{
width:150px;
}
<div class="content">
<div class="row>
<div class="cell">
<img src="https://hostingstudies.com/wp-content/uploads/2020/10/wordpress-589121_1280.jpg"></div>
<p class="project1info">
Featuring allows a user to search a musical artist and view a list of collaborators they have worked with.</p>
<div class="cell">
<img src="https://hostingstudies.com/wp-content/uploads/2020/10/wordpress-1882120_1280-1.png"></div>
<p class="project1info">
Featuring allows a user to search a musical artist and view a list of collaborators they have worked with.</p>
</div>
</div>