NFT-preview-card-component

Solution retrospective
I need some help understanding how to middle align content .
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Rioba-Ian
Your solution is match on. You did quite great.
On the very last part as in styling those elements, you could wrap them inside a div. Let me copy paste your code below and how we could align them in the center.
<img class="avatarImage" src="images/image-avatar.png" alt="avatar"> <span class="author">Creation of <span class="name">Jules Wyvern</span></span>
You could wrap them inside a div e.g
<div class="creator"> <img class="avatarImage" src="images/image-avatar.png" alt="avatar"> <span class="author">Creation of <span class="name">Jules Wyvern</span></span> </div>
Styling:
.creator{ display: flex; flex-direction: row; align-items: center; }
Marked as helpful
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord