Hey, I have a user info section with the user pic, user name, and user bio. I want the user pic on the left side and the name & bio on the right side.
Here is the HTML code:
<div class="user-info">
<div class="user-pic">
<img src="" class="u-pic"/>
</div>
<div class="user-name">Jon Doe</div>
<div class="user-bio">I am an English teacher</div></div>
After making these changes, all the divs have the same height. However, I would like the name div to be at the top and the bio div to be at the bottom of the name div.
Thank you!