...

/

Solution Review: CSS Flexbox Challenge

Solution Review: CSS Flexbox Challenge

The solution to the challenge of the CSS flexbox property is discussed in this lesson.

Solution review: Responsive mini-website

Let’s have a look at the solution first.

  • HTML
  • CSS (SCSS)
html
css

Explanation

* {
  box-sizing: border-box;
  margin: 0;
  padding:
...