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

Four card feature Project

maina-yusufโ€ข 80

@maina-yusuf

Desktop design screenshot for the Four card feature section coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


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

I was able to learn and work with flex-box and the directions

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

The main challenge was with the four card arrangements which was really challenging. I had to research and seek further help to be able to get it.

Community feedback

MikDra1โ€ข 6,070

@MikDra1

Posted

Nice one ๐Ÿ˜€

If you are curious how you can do this straight lines on the top of each card here is my tip:

Create another element in each of the cards. Then position this element absolute. Card should be positioned relative. At the end you need to give this element a height of 3px width of 100% and top 0 and left 0. You can also use ::after or ::before pseudo elements to create these.

Hope you found this comment helpful ๐Ÿ’—

Good job and keep going ๐Ÿ˜๐Ÿ˜Š๐Ÿ˜‰

Marked as helpful

0
P
Steven Stroudโ€ข 4,100

@Stroudy

Posted

Amazing job with this! Youโ€™re making fantastic progress. Here are some small tweaks that might take your solution to the next levelโ€ฆ

  • This task is defiantly a CSS Grid rather than CSS Flex, Worth watching some YouTube videos,

  • .card 1 2 3 4 all have the same styling and should have the same class name, This is to avoid "DRY" (Dont Repeat Yourself),

  • .main-container .header p The padding on this element is causing your text to act weird, padding should never be used to position a element, That is margin job,

  • Your heading elements are (<h2><h3><h5>) missing <h4>, Heading elements should be in sequentially-descending order (e.g., <h1>, <h2>, <h3>) to create a clear content structure, improving accessibility and SEO. Skipping levels or using them out of order can confuse screen readers, affect search engine rankings, and make your content harder to understand.

  • This does not matter that much at this stage but something to be mindful of for SEO(Search Engine Optimisation), <meta> description tag missing that helps search engine determine what the page is about, Something like this <meta name="description" content="" />

  • Using a <main> tag inside the <body> of your HTML is a best practice because it clearly identifies the main content of your page. This helps with accessibility and improves how search engines understand your content.

  • Using max-width: 100% or min-width: 100% is more responsive than just width: 100% because they allow elements to adjust better to different screen sizes. To learn more, check out this article: responsive-meaning.

  • Developers should avoid using pixels (px) because they are a fixed size and don't scale well on different devices. Instead, use rem or em, which are relative units that adjust based on user settings, making your design more flexible, responsive, and accessible. For more information check out this, Why font-size must NEVER be in pixels or this video by Kevin Powell CSS em and rem explained.- Another great resource for px to rem converter.

Great job taking the time to learn! Your efforts are paying off, and I hope these insights guide you to even more success. Keep pushing forward, and remember, youโ€™ve got this! Enjoy your coding adventures! ๐Ÿ’ช

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