Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Toast Positioning & Auto-Hide

  • top-0 .end-0 → Top-right
  • .bottom-0 .start-0 → Bottom-left
  • .top-50 .start-50 translate-middle → Center of the screen

JavaScript Code:

JavaScript
<!-- JavaScript -->
<script>
  document.getElementById("showBottomLeftToast").addEventListener("click", function () {
    var toastEl = new bootstrap.Toast(document.getElementById("bottomLeftToast"));
    toastEl.show();
  });
</script>

Bootstrap:

JavaScript
<!-- Bottom Left Toast -->
<div class="toast-container position-fixed bottom-0 start-0 p-3">
  <div class="toast" id="bottomLeftToast" data-bs-autohide="false">
    <div class="toast-header">
      <strong class="me-auto">Positioned Toast</strong>
      <button type="button" class="btn-close" data-bs-dismiss="toast"></button>
    </div>
    <div class="toast-body">
      This toast appears at the bottom-left corner.
    </div>
  </div>
</div>

<!-- Button to Show Toast -->
<button class="btn btn-success" id="showBottomLeftToast">Show Toast</button>
  • The position-fixed bottom-0 start-0 positions the toast in the bottom-left corner.
  • The data-bs-autohide=”false” prevents auto-dismissal.