0
0
Bootsrapmarkup~5 mins

Flex utilities in Bootsrap - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the Bootstrap class d-flex do?
It makes an element a flex container, enabling flexbox layout for its children.
Click to reveal answer
beginner
How do you align flex items vertically in the center using Bootstrap flex utilities?
Use the class align-items-center on the flex container to center items vertically.
Click to reveal answer
intermediate
What Bootstrap class would you use to space flex items evenly with space between them?
Use justify-content-between to place equal space between flex items.
Click to reveal answer
intermediate
How can you make a flex container wrap its items to the next line in Bootstrap?
Add the class flex-wrap to allow flex items to wrap onto multiple lines.
Click to reveal answer
beginner
What is the difference between flex-row and flex-column in Bootstrap?
flex-row arranges flex items horizontally (default), while flex-column arranges them vertically.
Click to reveal answer
Which Bootstrap class makes an element a flex container?
Ad-flex
Bflex-item
Ccontainer-flex
Dflex-box
How do you center flex items horizontally in Bootstrap?
Aflex-center
Balign-items-center
Cjustify-content-center
Dcenter-items
Which class allows flex items to wrap onto multiple lines?
Aflex-wrap
Bflex-nowrap
Cwrap-items
Dflex-flow
What does flex-column do in Bootstrap?
AWraps items
BArranges items horizontally
CCenters items
DArranges items vertically
Which class spaces flex items evenly with space between them?
Ajustify-content-around
Bjustify-content-between
Cjustify-content-center
Dalign-items-between
Explain how to create a horizontal flex container with centered items using Bootstrap flex utilities.
Think about making the container flex, setting direction, and centering horizontally and vertically.
You got /4 concepts.
    Describe how to make flex items wrap to the next line and space them evenly in Bootstrap.
    Consider enabling wrapping and controlling spacing between items.
    You got /3 concepts.