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

Huddle landing page using flex-box, grid css

@CharlesMueke

Desktop design screenshot for the Huddle landing page with curved sections coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


I've completed the challenge. The problem i did face what how to place the SVG images instead in the footer i just added a background color. I really need help there. Any feedbacks are welcome.

Community feedback

@Ikuewumi

Posted

Hi 👋. Cool project. About your question on the curved sections, I think my way to place the svgs is using a pseudo-elements like before and after with relative positioning on the section element and absolute on the pseudo element. Here is an example:

section {
   ...
   position: relative;
}

section::before {
   content: '';
   position: absolute;
   inset: 0 0 auto 0; // a shorthand for top, right, bottom, left. This pseudo element would be on the top
   width: 100%;
   height: 300px; // arbitrary number.
   background-color: transparent;
   background-image: url(..path.svg);
   background-position: bottom left;
   background-size: contain;
   bg-repeat: no-repeat;

}

On the contrary, you could place the images in markup and use the absolute positioning to get it in the right spot (while paying attention to a11y).

I hope this helps. Above all, this is a great project🎊. If you have any questions, don't hesitate to comment, and keep coding👍,

Ayobami

0

@CharlesMueke

Posted

@Ikuewumi thank you so much.

I am gonna try that and see.

0

@Ikuewumi

Posted

@CharlesMueke So, does it work now?

0

@CharlesMueke

Posted

@Ikuewumi yeah it did work..thank you again

Is there anyway i can reach you apart from here if you don't mind

0

@Ikuewumi

Posted

@CharlesMueke Okay. My WhatsApp number is 08108567504

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