Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted over 1 year ago

Four card feature section solution

Lara Mesa•250
@Lara-art
A solution to the Four card feature section challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

Solution retrospective


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

With this exercise I learned that the grid is a bit difficult, I couldn't do it without @media.

.grid { display: grid; grid-template-columns: repeat(3, 1fr); }

@media (max-width:1000px) {

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

}

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

I couldn't get the height of .card to work without setting it directly. And as for the image position, the only way I could think of was to use position

.card { padding: 2rem; height: 16rem; position: relative;

& img {
    margin-top: 2rem;
    width: 80px;
    position: absolute;
    right: 10%;
    bottom: 15%;
}

}

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

How can I know the size of the exercise elements? Was there another way to place the image in that position?

Code
Loading...

Please log in to post a comment

Log in with GitHub

Community feedback

No feedback yet. Be the first to give feedback on Lara Mesa's solution.

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

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner
  • Use cases

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License