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

Skilled e-learning landing page

P
Jax Tellerโ€ข 670

@piushbhandari

Desktop design screenshot for the Skilled e-learning landing page coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


some troubles with this one

  1. for the cards, how do i keep all of the cta buttons to the bottom consistently? some cards the text is longer than others so that leads to inconsistent placement for the cta

  2. would it be ok to wrap a div around all my elements(nav, main, footer) to act as a container? it'd help me make me write less code.

Community feedback

Lucas ๐Ÿ‘พโ€ข 104,420

@correlucas

Posted

๐Ÿ‘พHello Jax Teller, congratulations for your solution!

I did this same challenge I know how hard it is, but you did everything fine.

About the cards, maybe you can manage it using display: flex; and justify-content: space-around; to manage the spaces. See the code fix below for your class:

.features__feature {
    display: flex;
    align-content: stretch;
    flex-direction: column;
    justify-content: space-around;
}

About the container, all I've done was that I create a .container with a max-width: 1110; and I've added it to each section to keep the main column consistent.

A better way to manage the hero image is using overflow: hidden; to get a better result when the screen scales down and the image get cropped without push the content.

If you want to see my challenge to take something as a reference, here's the link Jax: https://www.frontendmentor.io/challenges/skilled-elearning-landing-page-S1ObDrZ8q/hub/skilled-elearning-landing-page-vanilla-css-wr-dMF3Qk1

Hope it helps and keep it up, you're almost there with this challenge.

Marked as helpful

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