Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 4 Toasts Vertically Stacked</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 20px; } </style> <script> $(document).ready(function(){ $(".toast").toast(); }); </script> </head> <body> <div class="bs-example"> <div class="toast fade show"> <div class="toast-header"> <strong class="mr-auto"><i class="fa fa-globe"></i> Hello, world!</strong> <small class="text-muted">just now</small> <button type="button" class="ml-2 mb-1 close" data-dismiss="toast">×</button> </div> <div class="toast-body">This is a basic toast message.</div> </div> <div class="toast fade show"> <div class="toast-header"> <strong class="mr-auto"><i class="fa fa-globe"></i> Hello, world!</strong> <small class="text-muted">5 minutes ago</small> <button type="button" class="ml-2 mb-1 close" data-dismiss="toast">×</button> </div> <div class="toast-body">This is another toast message.</div> </div> </div> </body> </html>