Craft By Zen

📖 1 min read

🔖 learning

Flexbox Challenge

This is a review of Flexbox Froggy, a game designed to help you learn about flexbox through moving frogs to their lily pads.

// In your flexbox, you have centered the content horizontally
// centered with "justify-content" and vertically centered with "align-items".

.pond {
  justify-content: center;
  align-items: center;
}

Written by Jeremy Wong and published on .