Skip to content

Instantly share code, notes, and snippets.

@douglasmiranda
Last active August 30, 2024 02:22
Show Gist options
  • Save douglasmiranda/cdccaafdead9ff542c2f697a2421de8d to your computer and use it in GitHub Desktop.
Save douglasmiranda/cdccaafdead9ff542c2f697a2421de8d to your computer and use it in GitHub Desktop.
Bootstrap Toasts - Top Right Fixed (+ Fix toast-container overlaping content)
/* https://getbootstrap.com/docs/5.0/components/toasts/ */
.toast-container {
position: fixed;
right: 20px;
top: 20px;
}
.toast:not(.showing):not(.show) {
display: none !important;
}
/*
<div class="toast-container">
<div class="toast d-flex align-items-center" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-body text-success">
Success!
</div>
<button type="button" class="btn-close ms-auto me-2" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
</div>
*/
<!-- Updating in case you're in Bootstrap 5.3 no custom css required -->
<!-- https://getbootstrap.com/docs/5.3/components/toasts/#placement -->
<!-- Important: position-fixed top-0 end-0 AND position-relative for toast-container -->
<!-- Important: added .show to .toasts so you can see the toasts without having to trigger them -->
<div aria-live="polite" aria-atomic="true" class="position-fixed top-0 end-0 z-3">
<!-- Position it: -->
<!-- - `.toast-container` for spacing between toasts -->
<!-- - `top-0` & `end-0` to position the toasts in the upper right corner -->
<!-- - `.p-3` to prevent the toasts from sticking to the edge of the container -->
<div class="toast-container position-relative p-3">
<!-- Then put toasts within -->
<div class="toast show" role="alert" data-bs-autohide="false" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<strong class="me-auto">Bootstrap</strong>
<small class="text-body-secondary">just now</small>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
See? Just like this.
</div>
</div>
<div class="toast show" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header">
<strong class="me-auto">Bootstrap</strong>
<small class="text-body-secondary">2 seconds ago</small>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body">
Heads up, toasts will stack automatically
</div>
</div>
</div>
</div>
@TheJoshuaEvans
Copy link

Many thanks for this snippet! It is extremely useful!

@svinther
Copy link

very useful gist !

@Estevangomez
Copy link

Thanks Bro

@RusselFabroa
Copy link

Thanks

@axherrm
Copy link

axherrm commented Dec 3, 2022

Thanks

@mykhailo-monchak
Copy link

Thanks

@zurisR
Copy link

zurisR commented Aug 15, 2024

Thanks

@HenriquedSS1912
Copy link

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment