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

  • P
    Ann 80

    @anastDev

    Submitted

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

    What I’m Most Proud Of and What I’d Do Differently Next Time

    • I’m really proud of sticking with this project and not giving up, even when faced with new challenges. It felt great to see my persistence pay off and to realize that I’m starting to retain more from previous projects—there were a few things I didn’t need to look up this time!

    • Next time, I’d like to explore alternative methods and approaches to see if I can make my workflow even smoother. I’m also interested in experimenting with different design elements and seeing how they can enhance the overall project.

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

    For future projects, I want to:

    • Improve Responsive Design: Keep refining my ability to create layouts that work well on all devices.

    • Advance in CSS: Focus on mastering CSS animations, transitions, and grid layouts for more dynamic designs.

    • Enhance JavaScript Integration: Get better at combining JavaScript with CSS and HTML to add interactive elements and improve user experience.

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

    I’d appreciate any constructive criticism on how to improve my code, especially in making it more concise and well-structured.

    @luqmanx1998

    Posted

    Hey there, I like your solution ! You have a good grasp on a lot of important CSS properties, and even using custom CSS variables, which is great. I'm also learning, but it's great to see someone else do their best ! Here's my feedback after looking at your code :

    • Perhaps in the future it's best not to explicitly set your container's height, as it could affect your card layout, as seen when in desktop mode, your card content is stretched out. In your .card container you had set height: 80vh. Because your content did not fill up the entire height, combined with the property you had set .card-body { flex: 1 1 auto; } caused your content to stretch out. If you remove both these properties the card collapses, and the layout looks more even !

    That being said, your card looks great, and let's keep improving :D

    Marked as helpful

    1
  • Lyna 260

    @lynaIFR

    Submitted

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

    I found some difficulty with the size of the card, if anyone has suggestions, please share. If there is something that could be done better, I'll be happy to have your opinion on it.

    @luqmanx1998

    Posted

    Hello ! That's really good imo ! You mentioned having some issues with the size of the card, I assume you meant the proportions of each side of your card, that the card-details side is bigger than your image side? If that's the case, I looked into your code, and I think for your desktop responsive media query, you could try this maybe:

    .card { display: grid; grid-template-columns: 1fr 1fr; }

    And perhaps you may want to remove the gap in your .card class too, if you choose to try this , so it looks uniform ! Grid flows in rows by default, so no need for flex-direction: row with this method either ! Have a great day :D.

    1