
Please log in to post a comment
Log in with GitHubCommunity feedback
- @sohail-ekhtiary
🎉 Congratulations on completing your project! It looks fantastic so far! Just a small note: the grid isn’t aligned properly. 🖼️ To fix this, you can use **CSS flexbox or grid
For example:
USING FLEX BOX display: flex;
align-items: center;
justify-content: center;
height: 100vh;Or USING GRID
display: grid;
place-items: center;
height: 100vh;This will perfectly center the grid both vertically and horizontally. Keep up the great work! 💪✨"
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