Parent container and child container

Tell us what’s happening:
Hii~!
what is a parent container and child container in this code???

Thank you

Your code so far


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

}

#box-2 {
  background-color: orangered;
  width: 100%;
  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/83.0.4103.116 Safari/537.36 Edg/83.0.478.61.

Challenge: Use the flex-shrink Property to Shrink Items

Link to the challenge:

Hi arsheencoder!

The <div id="box-container"> is the parent of <div id="box-1"></div> and <div id="box-2"></div>

1 Like