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

All comments

  • Gabrielβ€’ 140

    @Ghm84

    Submitted

    What are you most proud of, and what would you do differently next time?

    I've made this project with more confidence than the previous one.

    What challenges did you encounter, and how did you overcome them?

    The only thing it took me a while was the image resize and some details.

    What specific areas of your project would you like help with?

    Any suggestions will be appreciated.

    jwalczak94β€’ 810

    @jwalczak94

    Posted

    Hi, good job on completing this challenge !

    I have a some tips to boost your CSS code:

    • instead of using pixels (especially in in font-size), you use relative units like rem. In case of font-size when you using px it does not scale with the user's browser settings.
    • it is very bad practice to give a body a rigid width and height value, just do it on the card component ;)
    • to center the card you can use the code below
    body {
    display: grid;
    place-content: center;
    }
    

    Happy coding!

    Marked as helpful

    0
  • HaiHappen758β€’ 30

    @HaiHappen758

    Submitted

    What are you most proud of, and what would you do differently next time?

    I am proud that I have understood and been able to implement basic concepts of HTML and CSS.

    What challenges did you encounter, and how did you overcome them?

    I have delved deeper into flexbox

    What specific areas of your project would you like help with?

    i am satisfied

    jwalczak94β€’ 810

    @jwalczak94

    Posted

    Hi, good job on completing this challenge !

    I have a small tip for your CSS. Instead of using pixels (especially in in font-size), you use relative units like rem. In case of font-size when you using px it does not scale with the user's browser settings.

    Happy coding!

    Marked as helpful

    0