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

Implementation of CSS border length control function

In the past, when I needed the border length to b...

Detailed explanation of MySQL partition table

Preface: Partitioning is a table design pattern. ...

Add crontab scheduled tasks to debian docker container

Now most of the Docker images are based on Debian...

Best Practices for Developing Amap Applications with Vue

Table of contents Preface Asynchronous loading Pa...

Summary of four ways to loop through an array in JS

This article compares and summarizes four ways of...

Summary of a CSS code that makes the entire site gray

In order to express the deep condolences of peopl...

Docker custom network container interconnection

Table of contents Preface –link Custom Network As...

How to use partitioning to optimize MySQL data processing for billions of data

When MySQL queries tens of millions of data, most...

Simple implementation method of vue3 source code analysis

Table of contents Preface 🍹Preparation 🍲vue3 usag...

React uses emotion to write CSS code

Table of contents Introduction: Installation of e...

Detailed explanation of this reference in React

Table of contents cause: go through: 1. Construct...