Freebox Zombies

I am doing the assignments on the freebox zombies and I cannot complete challenge 6.17 ( chapter 6 level 17).

Need some assistance,

thanks
Rod

1 Like

did you solve it?
I am doing the assignment on Flexbox zombies, I wonder if Flexbox zombies and Freebox zombies both are same or not.

For the Flexbox Zombies Challenge 6.17 (NOT Freebox, as you mentioned), following is what solved it for me. FYI, initially I couldn’t figure it out either, and ended up having to utilize the “HINT” feature.

crossbow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.target.goo {
  align-self: flex-start;
  flex-grow: 1;
}

.target:nth-of-type(1) {
  flex-grow: 3;
  flex-shrink: 0;
}