Recall & Review
beginner
What is the purpose of carousel captions in Bootstrap?
Carousel captions provide text overlays on carousel images to describe or add context to each slide. They help users understand the content shown.
Click to reveal answer
beginner
Which Bootstrap class is used to add captions inside a carousel item?The class
.carousel-caption is used to add captions inside a carousel item. It positions text over the image with proper styling.Click to reveal answer
intermediate
How do you make carousel captions accessible for screen readers?
Use semantic HTML tags like
<h5> for titles and <p> for descriptions inside .carousel-caption. Also ensure good color contrast and readable font size.Click to reveal answer
intermediate
Can carousel captions contain HTML elements like links or buttons?
Yes, carousel captions can contain HTML elements such as links, buttons, or formatted text to make captions interactive or styled.
Click to reveal answer
advanced
What CSS positioning does Bootstrap use for carousel captions by default?
Bootstrap uses absolute positioning for
.carousel-caption to place captions at the bottom center of the carousel item by default.Click to reveal answer
Which class adds captions inside a Bootstrap carousel slide?
✗ Incorrect
The correct class to add captions inside a carousel slide is .carousel-caption.
Where are carousel captions positioned by default in Bootstrap?
✗ Incorrect
Bootstrap positions carousel captions at the bottom center of the slide by default.
Which HTML tag is best for the main title inside a carousel caption?
✗ Incorrect
Using a heading tag like
inside carousel captions improves accessibility and structure.
Can you include clickable links inside carousel captions?
✗ Incorrect
Carousel captions can contain any HTML, including clickable links and buttons.
What is important for carousel caption accessibility?
✗ Incorrect
Good color contrast and semantic HTML tags help make carousel captions accessible to all users.
Explain how to add and style captions in a Bootstrap carousel.
Think about the HTML structure and default styling Bootstrap provides.
You got /5 concepts.
Describe accessibility best practices for carousel captions.
Focus on how captions help all users, including those using screen readers.
You got /5 concepts.