`flex-flow` not working

I want the blocks to be from left to right. However, right now they are up to down, even though I set flex-flow to row wrap. Any ideas as to what’s going on?

1 Like

Try changing the properties of box to this (I saw that it was near the bottom)

.box {
  width: 100px;
  height: 100px;
  margin: 10px;
  box-shadow: -2.5px -2.5px 10px #bfbfbf, 2.5px 2.5px 10px #8d8d8d;
  border-radius: 10px;
  display: inline-block;
}
1 Like

haha yay! I can’t believe I just had to set display to inline block lol. thanks!

1 Like

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.