Error Your code should use the flex property for #box-1 and #box-2

Tell us what’s happening:

Your code so far


<style>
#box-container {
  display: flex;
  height: 500px;
}
#box-1 {
  background-color: dodgerblue;
  flex: 2 2 150px;
  height: 200px;
}

#box-2 {
  background-color: orangered;
  flex : 1 1 150px;
  height: 200px;
}
</style>

<div id="box-container">
<div id="box-1"></div>
<div id="box-2"></div>
</div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36.

Challenge: Use the flex Shorthand Property

Link to the challenge:

i figure it out
it was because the space between flex and : in the the #box-2

1 Like