Add pscroll to div as shown below For Particular div
You can Declare Both id's and classes
You can Declare Both id's and classes in place of xyz and
xyz1
.xyz{
max-height:300px; //// Add Particular max-height for this class
height:300px; //// Add Particular height for this class
}
#xyz1{
max-height:300px; //// Add Particular max-height for this class
height:300px; //// Add Particular height for this class
}
Add The HTML Properties data-bs-toggle,
data-bs-container, data-bs-placement,
title,data-bs-content and Property Values to
Button as shown below For the Particular button
<!-- Custom js-->
<script src="../assets/js/custom.js"></script>
// ______________Popover
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
return new bootstrap.Popover(popoverTriggerEl)
})