skip to Main Content

Css – In a Bootstrap 5 toast how can I align the Close button to the right?

I define a Bootstrap 5 toast like this: <div id="liveToast" class="toast hide" role="alert" aria-live="assertive" aria-atomic="true"> <div class="toast-header"> <strong class="me-auto">Help</strong> <button type="button" class="end-0 close" data-dismiss="toast"> <span>&times;</span> </button> </div> ... </div> hoping the end-0 class would align the Close button character &times;…

VIEW QUESTION
Back To Top
Search