Recall & Review
beginner
What is a Bootstrap alert variant?
A Bootstrap alert variant is a style option that changes the color and appearance of an alert box to indicate different meanings like success, warning, danger, or info.
Click to reveal answer
beginner
Name three common Bootstrap alert variants and their typical meanings.
Success: Green color, means a positive action or success.<br>Warning: Yellow/orange color, means caution or something to watch.<br>Danger: Red color, means an error or serious problem.
Click to reveal answer
beginner
How do you add a success alert in Bootstrap using HTML?
Use a
<div> with classes alert and alert-success. Example:<br><div class="alert alert-success" role="alert">Success message here.</div>
Click to reveal answer
intermediate
What role attribute should you add to Bootstrap alerts for accessibility?
Add
role="alert" to the alert container. This helps screen readers announce the alert message immediately.Click to reveal answer
intermediate
Can Bootstrap alert variants be customized with your own colors?
Yes, you can customize alert colors by overriding Bootstrap CSS variables or adding your own CSS styles to change the background and text colors.
Click to reveal answer
Which Bootstrap class creates a red alert box?
✗ Incorrect
The class
alert-danger creates a red alert box indicating danger or error.What is the purpose of the
role="alert" attribute in Bootstrap alerts?✗ Incorrect
The
role="alert" attribute helps screen readers announce the alert message right away for accessibility.Which alert variant is typically yellow or orange in Bootstrap?
✗ Incorrect
The
alert-warning variant is usually yellow or orange to signal caution.How do you make a Bootstrap alert dismissible (able to close)?
✗ Incorrect
Adding
alert-dismissible and a close button allows users to close the alert.Which Bootstrap alert variant is used for informational messages?
✗ Incorrect
The
alert-info variant is used for informational messages and usually has a blue color.Explain how Bootstrap alert variants help users understand different types of messages on a website.
Think about how colors like green or red make you feel about the message.
You got /4 concepts.
Describe how to create an accessible alert in Bootstrap that can be read by screen readers.
Accessibility means everyone can understand the message, including people using special tools.
You got /4 concepts.