Let the web page automatically call the dual-core browser's high-speed mode (Webkit)

Let the web page automatically call the dual-core browser's high-speed mode (Webkit)
Code Sample

Add a line of code in the head tag:
XML/HTML CodeCopy content to clipboard
  1. < html >   
  2.    < head >   
  3.      < meta   name = "renderer"   content = "webkit|ie-comp|ie-stand" >   
  4.    </ head >   
  5.    < body >   
  6.    </ body >   
  7. </ html >   
The value of content is one of webkit, ie-comp, and ie-stand, which is case-sensitive and represents the webkit kernel, IE compatible kernel, and IE standard kernel respectively.

If the page needs to use the speed kernel by default, add the tag: <meta name="renderer" content="webkit">
If the page needs to use IE-compatible kernel by default, add the tag: <meta name="renderer" content="ie-comp">
If the page needs to use the IE standard kernel by default, add the tag: <meta name="renderer" content="ie-stand">
Technical details of each rendering core

Kernel Webkit IE Compatibility IE Standards
Document Mode Chrome 21 IE6/7 IE9/IE10/IE11 (depending on the user's IE)
HTML5 support YES NO YES
ActiveX Control Support NO YES YES

UA examples for each kernel

<<:  Detailed installation process and basic usage of MySQL under Windows

>>:  The difference between z-index: 0 and z-index: auto in CSS

Recommend

Solve the problem of using swiper plug-in in vue

Since I used this plugin when writing a demo and ...

How to start and stop SpringBoot jar program deployment shell script in Linux

Without further ado, let me give you the code. Th...

How to configure Jupyter notebook in Docker container

Jupyter notebook is configured under the docker c...

How to write the introduction content of the About page of the website

All websites, whether official, e-commerce, socia...

Vue echarts realizes dynamic display of bar chart

This article shares the specific code of vue echa...

Tutorial on installing mysql under centos7

Recently, I plan to deploy a cloud disk on my hom...

100 ways to change the color of an image using CSS (worth collecting)

Preface “When it comes to image processing, we of...

Detailed explanation of docker-machine usage

Docker-machine is a Docker management tool offici...

A brief introduction to JavaScript arrays

Table of contents Introduction to Arrays Array li...

Network configuration of Host Only+NAT mode under VirtualBox

The network configuration of Host Only+NAT mode u...

WeChat applet implements form verification

WeChat applet form validation, for your reference...

Detailed explanation of nginx's default_server definition and matching rules

The default_server directive of nginx can define ...

Methods and steps to upgrade MySql5.x to MySql8.x

Several Differences Between MySQL 5.x and MySQL 8...

Problems and solutions when replacing Oracle with MySQL

Table of contents Migration Tools Application tra...