Answer Posted / Pranav Kumar Ojha
To create a dismissible alert with Bootstrap, use the .alert-dismissible class and add the close button (<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>). Here's an example:nn```htmln<div class="alert alert-warning alert-dismissible fade show" role="alert">n <strong>Holy guacamole!</strong> You should check in on some of those fields below.<br>n <button type="button" class="close" data-dismiss="alert" aria-label="Close">n <span aria-hidden="true">×</span>n </button>n</div>n```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers