Although Microsoft has done a lot of research and development on the browser later, the fact is that the modern IE browser is often behind the webkit-based browsers and Firefox. We also need to adapt to earlier versions of IE. The following tips will make your website faster and even run magically better on Microsoft’s flagship browser! htmlshiv.js Remy's HTML5shiv uses JavaScript to create HTML5 elements (such as main, header, footer, etc.). Elements created through JavaScript are styleable to a certain extent. We can spend a lot of time thinking about how this works, but who cares? This strategy is still a must-have on all product websites. Copy code The code is as follows:<!--[if lt IE 9]> <script src="dist/html5shiv.js"></script> <![endif]--> selectivizr.js Selectivizr.js is an incredible resource for polyfilling unsupported CSS selectors and properties, including the important last-child. In a recent redesign, I embedded selectivizr and didn't miss any details on older IE browsers. Here is my implementation code: Copy code The code is as follows:<!--[if lte IE 8]><script src="js/libs/selectivizr.js"></script><![endif]--> An absolute must for modern projects. Only loaded in old IE <html> Conditional Comments You must have seen the most tacky situation below. But ugly or not, this code actually works exactly as expected: Copy code The code is as follows:<!DOCTYPE html> <!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]--> <!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]--> <!--[if IE 8 ]> <html class="ie8" lang="en"> <![endif]--> <!--[if IE 9 ]> <html class="ie9" lang="en"> <![endif]--> <!--[if (gt IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]--> This code snippet doesn't require or wait for JavaScript, and doesn't require a heavyweight JavaScript library. The styles class you define takes effect immediately, without any splash screen. Although Internet Explorer is catching up with its competitors, the fact is that the older IE browser is still relatively popular, especially in developing countries. The good news is that these resources work great on all modern browsers and don’t cost much! |
<<: A detailed introduction to Linux system operation levels
>>: About the problem of vertical centering of img and span in div
Table of contents 1. Install the psutil package S...
1. Review The Buffer Pool will be initialized aft...
This is an article written a long time ago. Now it...
When multiple images are introduced into a page, ...
1: Docker private warehouse installation 1. Downl...
Table of contents MySQL Constraint Operations 1. ...
I can log in to MYSQL normally under the command ...
Method 1: Command line modification We only need ...
System: Ubuntu 16.04LTS 1\Download mysql-5.7.18-l...
Table of contents SQL execution order bin log Wha...
CSS 3 animation example - dynamic effect of Tab b...
Preface MySQL 8.0.13 began to support index skip ...
Table of contents 1. Short circuit judgment 2. Op...
FFMPEG 3.4.1 version parameter details Usage: ffm...
Problem Description Install nginx on Tencent Clou...