Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

3 column card

@MikhelRhyz

Desktop design screenshot for the 3-column preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


feedback is a great help

Community feedback

Bryan Li 3,550

@Zy8712

Posted

Your solution looks great. Minor thing I noticed when skimming through your code is an possible minor typo:

The first div in your body has a class alig-items-center. It is missing the n in align.

If you want to center your container, I'd suggest using flexbox to center it and adjusting your attribution to have position: absolute so it doesn't interfere with your main content.

Centering container:

body{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center
}

Adjusting attribution:

positon: absolute;
bottom: 8px;

Hope this helps 👍

Marked as helpful

1

@MikhelRhyz

Posted

@Zy8712 Thank you for the feedback. I will take note of that.

0

Please log in to post a comment

Log in with GitHub
Discord logo

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