skip to Main Content

Html – Center card in Bootstrap

I am trying to center the card but its not getting centered properly, im a beginner so im not sure what to do. </head> <body> <div class="container"> <div class="row justify-content-center"> <div class="col-md-4 col-12"> <div class="card bg-card col-12"> <div class="card-body text-center">…

VIEW QUESTION

Bootstrap 5.3 events not working in jQuery .on event

This is such an odd issue. I've never had any issues like this before... Here is my dropdown... $('#mydropdown').on('show.bs.dropdown', function() { console.log('hit 1'); }); $(document).on('show.bs.dropdown', '#mydropdown', function() { console.log('hit 2'); }); <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script><script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/> <div class="dropdown" id="mydropdown">…

VIEW QUESTION
Back To Top
Search