Explain me how will you create a bootstrap dismissal alert?
Answer Posted / Km Pooja Yadav
To create a dismissible (closable) alert in Bootstrap, use the .alert-dismissible class and include an X close button with the data-dismiss="alert" attribute. For example: <div class="alert alert-success alert-dismissible fade show" role="alert">n <strong>Well done!</strong> You successfully read this important alert message.n <button type="button" class="close" data-dismiss="alert" aria-label="Close">n <span aria-hidden="true">×</span>n </button>n</div>
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers