<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Stacking Toasts Vertically in Bootstrap</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <script> $(document).ready(function(){ $(".toast").toast({ autohide: false }); }); </script> </head> <body> <div class="m-4"> <p><strong>Note:</strong>The toast is displayed by adding the .show class, and a CSS fade transition is applied to the toast using the .fade class. By default, the toast is initially hidden.</p> <div class="toast-container"> <div class="toast fade show"> <div class="toast-header"> <strong class="me-auto"><i class="bi-globe"></i>Happy Morning</strong> <small>just now</small> <button type="button" class="btn-close" data-bs-dismiss="toast"></button> </div> <div class="toast-body"> This is a Text </div> </div> <div class="toast fade show"> <div class="toast-header"> <strong class="me-auto"><i class="bi-globe"></i> Happy Morning</strong> <small>5 seconds ago</small> <button type="button" class="btn-close" data-bs-dismiss="toast"></button> </div> <div class="toast-body"> See? This is another text. </div> </div> </div> </div> </body> </html>