Help with flexbox... Build a Personal Portfolio Webpage Lesson

Hi guys,

Apologies if this has been answered - I feel the like just as I get to grips with Flexbox, it comes back to haunt me.

Why do I have white edges on an element “welcome-section”? Here is my code so far:

The width is 100% which says to me that it’s in a container but I feel a bit lost now… Anyone help?

Challenge: Build a Personal Portfolio Webpage

Link to the challenge:

This maybe due to the default margin.

Remove the default values using

*{
    margin: 0;
}
1 Like

You beautiful person… you know how long that was annoying me! - Thank you!

1 Like