in this challenge, I have noticed something strange. let me explain in details
there is a container having the display flex property and it has a height of 600px, and the container has 2 children and they took the full height of their parent how that happened and there is no height property on them
1 Like
flex has a default of
align-items:stretch;
align-content:stretch;
Which is saying whatever in the flexbox stretch it to the full height. modify these properties and you can see the difference