CSS Flexbox Quiz

CSS Flexbox Quiz

University

8 Qs

quiz-placeholder

Similar activities

JSB Practice

JSB Practice

8th Grade - University

11 Qs

T3. C1-C2 Quizizz Post-Test

T3. C1-C2 Quizizz Post-Test

7th Grade - University

10 Qs

Frontend модуль 2

Frontend модуль 2

6th Grade - University

11 Qs

KNTT 12 BÀI 13

KNTT 12 BÀI 13

12th Grade - University

10 Qs

HTML day 7

HTML day 7

University

5 Qs

CSS Quiz

CSS Quiz

University

10 Qs

Workshop Day 2 Frontend

Workshop Day 2 Frontend

University

10 Qs

Dasar Pemrograman Web

Dasar Pemrograman Web

University

10 Qs

CSS Flexbox Quiz

CSS Flexbox Quiz

Assessment

Quiz

Computers

University

Medium

Created by

Halit Batur

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you turn an element into a Flex Container so its children use Flexbox?

container { display: block; }

container { display: inline-block; }

container { display: flex; }

container { flex-container: true; }

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which CSS property defines the main axis direction (e.g., row or column) in a flex container?

flex-grow

flex-direction

justify-content

flex-axis

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the default flex-direction for a flex container?

row

column

row-reverse

none

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which property controls how extra space (along the main axis) is distributed between flex items?

align-items

flex-wrap

justify-content

flex-shrink

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose you want items to wrap onto multiple lines instead of squishing into one row. Which property would you use?

align-content: space-around;

flex-wrap: wrap;

justify-content: space-between;

flex-flow: multiple;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which property allows you to align items along the cross axis (for instance, vertically if flex-direction is row)?

justify-content

align-items

flex-flow

order

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you only want to align one specific flex item differently from the others, which property would you use on that item?

align-self

justify-self

flex-direction

align-items

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If flex-direction: column;, which property would you use to center items horizontally?

align-items: center;

justify-content: center;

order: 1;

align-self: center;