"."/> ".">
Home >Web Front-end >Bootstrap Tutorial >How bootstrap is compatible with ie6
How to make bootstrap compatible with IE6: first open the corresponding page code; then introduce the js file through "264003471aa97cd4b92df35a94c8dbcc".
#The operating environment of this article: Windows7 system, bootstrap3, Dell G3 computer.
Bootstrap comes from Twitter and is currently the most popular front-end framework. Bootstrap is based on HTML, CSS, and JavaScript, and it is simple and flexible. During the development process, we only need to add the corresponding class to the DOM element to call it, making Web development faster.
How is bootstrap compatible with ie6?
bootstrap template is to make IE6, 7, and 8 browsers (versions below IE9) compatible with the new tags of html5, just introduce the following code file
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
The same is true for using IE6, 7, and 8 browsers are compatible with css3 styles and introduce the following code:
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
Recommended: "bootstrap tutorial"
The above is the detailed content of How bootstrap is compatible with ie6. For more information, please follow other related articles on the PHP Chinese website!