Bootstrap Modals Interview
1Structure hierarchy for modal?
Answer:
.modal > .modal-dialog > .modal-content.2How to trigger modal?
Answer: Use
data-bs-toggle="modal" and data-bs-target.3How to close modal?
Answer: Button with
data-bs-dismiss="modal".4How to center modal vertically?
Answer: Add
.modal-dialog-centered.5Accessibility key point?
Answer: Proper labeling and focus management.