Answers for "bootstrap not working"

4

angular bootstrap not working

@import "node_modules/bootstrap/scss/bootstrap.scss"
Posted by: Guest on April-26-2020
1

bootstrap not working in angular

"styles": [
    "styles.css",
    "./node_modules/bootstrap/dist/css/bootstrap.min.css"
  ],
  "scripts": [
    "./node_modules/jquery/dist/jquery.min.js",
    "./node_modules/bootstrap/dist/js/bootstrap.min.js"
  ],
Posted by: Guest on March-19-2021
0

bootstrap not working in angular

npm install popper.js
Posted by: Guest on March-19-2021
0

bootstrap not working in print

<script> 
    function printDiv() { 
        var divContents = document.getElementById("main_div").innerHTML; 
        var a = window.open('', '', 'height=500, width=500'); 
        a.document.write('<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"><html>'); 
        a.document.write('<body >'); 
        a.document.write(divContents); 
        a.document.write('</body></html>'); 
        a.document.close(); 
        a.print(); 
    } 
</script>
Posted by: Guest on March-12-2021

Code answers related to "bootstrap not working"

Code answers related to "Javascript"

Browse Popular Code Answers by Language