Challenge - 5 Problems
Flexbox and Grid Master in Webflow
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Understanding Flexbox Alignment in Webflow
In Webflow, when you set a container to use Flexbox, which property controls how items are spaced along the main axis?
Attempts:
2 left
💡 Hint
Think about how items move left to right or top to bottom inside the container.
✗ Incorrect
Justify Content controls the spacing of flex items along the main axis (horizontal or vertical depending on direction). Align Items controls cross axis alignment.
❓ selector
intermediate2:00remaining
Grid Cell Selection in Webflow
In Webflow's grid layout, how do you select a specific grid cell to place an element?
Attempts:
2 left
💡 Hint
Look for direct interaction with the grid in the visual editor.
✗ Incorrect
Webflow lets you click on grid cells in the canvas or use the settings panel to assign elements to specific cells.
❓ layout
advanced3:00remaining
Combining Flexbox and Grid for Responsive Design
You want a layout where the header uses Flexbox to space items horizontally, and the main content uses Grid to arrange articles in columns. Which approach in Webflow best achieves this?
Attempts:
2 left
💡 Hint
Think about separating concerns for different sections.
✗ Incorrect
Using Flexbox for the header and Grid for main content separately allows each section to use the best layout method for its needs.
❓ accessibility
advanced3:00remaining
Accessibility Considerations with Flexbox and Grid in Webflow
When using Flexbox or Grid in Webflow to create complex layouts, what should you do to ensure keyboard users can navigate content logically?
Attempts:
2 left
💡 Hint
Think about how screen readers and keyboard users read content.
✗ Incorrect
Maintaining logical HTML source order that matches visual order helps keyboard and screen reader users. tabindex should be used sparingly.
❓ rendering
expert3:00remaining
Unexpected Layout Behavior in Webflow Flexbox
You set a Flexbox container in Webflow with
justify-content: space-between and flex-wrap: wrap. You notice that items in the second row are not spaced evenly. What is the most likely cause?Attempts:
2 left
💡 Hint
Think about how space-between works on wrapped rows.
✗ Incorrect
Flexbox applies justify-content: space-between to each row separately. If the second row has fewer items, spacing looks uneven.