0
0
Bootsrapmarkup~5 mins

Collapse component in Bootsrap - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is the purpose of the Bootstrap Collapse component?
The Collapse component allows you to show or hide content with a smooth sliding animation, helping to save space and organize information on a webpage.
Click to reveal answer
beginner
Which HTML attribute is used to toggle the Collapse component in Bootstrap?
The data-bs-toggle="collapse" attribute is used on a button or link to toggle the visibility of the target content.
Click to reveal answer
beginner
How do you link a button to the content it controls in a Bootstrap Collapse?
Use the data-bs-target attribute on the button with the CSS selector (like an ID) of the collapsible content, for example data-bs-target="#myCollapse".
Click to reveal answer
beginner
What class must be added to the content element to make it collapsible in Bootstrap?
The content element must have the class <code>collapse</code> to be collapsible. Adding <code>show</code> class makes it visible by default.
Click to reveal answer
intermediate
How can you make multiple Collapse components work as an accordion in Bootstrap?
Wrap the collapsible items in a parent element with id and add data-bs-parent="#parentID" to each collapse content. This makes only one item open at a time.
Click to reveal answer
Which attribute do you add to a button to toggle a Bootstrap Collapse?
Adata-bs-target="collapse"
Bdata-toggle="dropdown"
Cdata-bs-toggle="collapse"
Ddata-collapse="toggle"
What class should the collapsible content have in Bootstrap?
Acollapse-toggle
Bcollapsible
Ctoggle-collapse
Dcollapse
How do you make a Collapse component visible by default?
AAdd the class <code>show</code> to the collapse content
BAdd <code>data-visible="true"</code>
CAdd <code>visible</code> attribute
DAdd <code>active</code> class to the button
What does the data-bs-parent attribute do in a Collapse accordion?
AMakes the collapse content draggable
BEnsures only one collapse item is open at a time
CLinks the collapse to a button
DChanges the collapse animation speed
Which Bootstrap version introduced the data-bs-toggle attribute naming?
ABootstrap 5
BBootstrap 3
CBootstrap 4
DBootstrap 2
Explain how to create a simple Collapse component in Bootstrap that toggles content visibility when a button is clicked.
Think about the button attributes and the classes needed on the content.
You got /4 concepts.
    Describe how to set up multiple Collapse components so they behave like an accordion, allowing only one open section at a time.
    Focus on the data-bs-parent attribute and its effect.
    You got /3 concepts.