You know that without it, the browser will use quirks mode when rendering the page; you know that different browsers render different elements differently in quirks mode. So you would write a doctype like this: Copy code The code is as follows:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Fortunately, various web development tools are now powerful enough to support the insertion of template code, so you don’t need to type out this long and smelly doctype letter by letter. But if you've had enough of it, you might try this: Copy code The code is as follows:<!DOCTYPE html> Wow, very concise! The benefits are obvious: 1. You can easily write this doctype without worrying about making mistakes; 2. You save about 105 bytes of characters. For a site with tens of millions of daily PVs, it can save a considerable amount of traffic; 3. It is backward compatible. Yes, the html5 doctype is written like this, and modern browsers recognize it. If you're like me and have always thought that
Note: You don't need to validate your page against your chosen doctype at all; the mere presence of the doctype tag is enough to enable strict mode (standards mode). If you still doubt what I'm saying, go to http://www.quirksmode.org/css/quirksmode.html#link2 to find out what you need to know. We only need a small piece of JavaScript code to get the answer, it is: Copy code The code is as follows:mode=document.compatMode; This code can be used to determine whether the current browser is in quirks mode or standards mode. The compatibility of this property is beyond doubt. If you have doubts, you can check http://www.quirksmode.org/dom/w3c_html.html#t11. You can visit http://wanz.im/demo/doctype-test.html in the browser you want to test and you can see the results. As far as I know, this does not activate quirks mode, even under IE6. If you have any new discoveries, please leave me a message. |
<<: Introduction to the use of MySQL performance stress benchmark tool sysbench
>>: 20 CSS coding tips to make you more efficient (sorted)
Table of contents Compare the empty string '&...
1. Linux kernel driver module mechanism Static lo...
System and user environment design <br />Th...
Syntax format: row_number() over(partition by gro...
Use native js to implement a simple calculator (w...
Table of contents Overview (Loop Mode - Common) D...
There are two ways: 1. Service method Check the f...
One-click execution To install Python 3.8 in a vi...
Function Origin I was recently working on an H5 t...
This article shares the specific code of JavaScri...
We will use CSS3 animated transitions to create a...
The mini program implements a complete shopping c...
Table of contents introduce Object attributes in ...
Common points: The DIV tag and SPAN tag treat som...
Preface In the application of database, programme...