Bootstrap Alerts Interview
1Base class for alerts?
Answer:
.alert.2How to make dismissible alert?
Answer: Add
.alert-dismissible and close button with data-bs-dismiss.3How to style alert severity?
Answer: Use contextual classes like
.alert-success, .alert-danger.4Why set
role="alert"?Answer: Improves announcement behavior for assistive technologies.
5Can alerts contain links?
Answer: Yes, with
.alert-link styling.