Exploring Flex-Wrap Values2:00
now move into the next row. We might also want to center these. So let's change the horizontal placement using justify-content: center;. Just reiterating, this rule is for horizontally aligning or centering the items within the container. And this rule here is for vertically centering them relative to each other. Yes, this looks much better. Now this section is responsive too. You want to see that? You see, we have not added any media queries, but the section is responsive by just adding the rule flex-wrap: wrap;. Now there are other values for this property. Let's look into them. Section flex-wrap. One of the values is nowrap. That's the default behavior anyway. But in case you have set this property to wrap using media queries and for another device size, you want to change that, then you can override it with flex-wrap: nowrap;. Another interesting value is, let
