Quiz App

What is the difference between the CSS Flexbox properties justify-content and align-items, and which axis does each one affect in a flex container?

justify-content aligns flex items along the main axis.
align-items aligns flex items along the cross axis.

  • css
  • flexbox

What property controls the space between grid andf flexbox items?

gap (or row-gap and column-gap).

  • css
  • grid
  • flexbox

What CSS property turns an element into a grid container?

display: grid;

  • css
  • grid