- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>The item growth factor, flex-grow</title>
    <link href="course.css" rel="stylesheet">
    <link href="style.css" rel="stylesheet">
  </head>
  <body class="world">
    <div class="spot spot-small">
      <div class="skate racoon-green"></div>
      <div class="skate racoon-brown"></div>
    </div>
    <div class="spot spot-small">
      <div class="skate racoon-gray"></div>
      <div class="skate racoon-orange"></div>
    </div>
  </body>
</html>
CSS
.spot {
  display: flex;
}
.racoon-green {
}
.racoon-orange {
}
You’ve gone to a different page
Goalscompleted
0
Assign a growth factor for flex-grow that is equal to 1:
- to the Green Raccoon’s skateboard (.racoon-green)
- and to the Orange Raccoon’s skateboard (.racoon-orange).
Comments