BootStrap, bootstrap tutorial
<script src="jquery.1.9.js"></script><script src="js/bootstrap.min.js"></script><link rel="stylesheet" href="css/bootstrap.min.css"><link rel="stylesheet" href="css/bootstrap-theme.min.css">
What do the files in Bootstrap indicate? What is the use?
Bootstrap.css is a complete bootstrap style table that has not been compressed and can be used for debugging during development.
Bootstrap.min.css finished
Bootstrap-responsive.css is the CSS style sheet needed after applying responsive layout to the bootstrap framework. If your website project is not prepared for responsive design, you don't need to reference this CSS.
Bootstrap-responsive.min.css and bootstrap.min.css are the compressed version of bootstrap-responsive.css.
Bootstrap. js is the soul of bootstrap and a collection of all js commands of bootstrap. You can see that all js effects in bootstrap are controlled by this file, this file is also an uncompressed version for debugging during development.
Bootstrap. min. js is bootstrap. javascript compressed version, content and bootstrap. js is the same, but the file size will be much smaller. When deploying a website, you can not reference bootstrap. js, instead of referencing this file ~~
So you can understand it ~~ Pai_^
What do the files in Bootstrap indicate? What is the use?
Bootstrap.css is a complete bootstrap style table that has not been compressed and can be used for debugging during development.
Bootstrap.min.css finished
Bootstrap-responsive.css is the CSS style sheet needed after applying responsive layout to the bootstrap framework. If your website project is not prepared for responsive design, you don't need to reference this CSS.
Bootstrap-responsive.min.css and bootstrap.min.css are the compressed version of bootstrap-responsive.css.
Bootstrap. js is the soul of bootstrap and a collection of all js commands of bootstrap. You can see that all js effects in bootstrap are controlled by this file, this file is also an uncompressed version for debugging during development.
Bootstrap. min. js is bootstrap. javascript compressed version, content and bootstrap. js is the same, but the file size will be much smaller. When deploying a website, you can not reference bootstrap. js, instead of referencing this file ~~
So you can understand it ~~ Pai_^