Markup validation for doctype

Markup validation for doctype
But recently I found that using this method will cause problems, see the code:

Copy code
The code is as follows:

<!DOCTYPE HTML>
<html>
<head>
<title>test page</title>
</head>
<body>
<p><div>a</div></p>
</body>
</html>

If this code is tested with w3c markup validation, it is found that it can pass the validation. Because html5 validation is still in the experimental stage, it does not detect any illegalities.

But if you use <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">, you will find that it does not validate.

The reason is that the p tag is special and cannot contain the block tag. It seems that using some experimental features too early may also cause problems. To be on the safe side, it is recommended to use <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">.

<<:  Detailed explanation of four solutions for implementing in-line scrolling on mobile devices

>>:  CSS -webkit-box-orient: vertical property lost after compilation

Recommend

Detailed explanation of the entry-level use of MySql stored procedure parameters

Use of stored procedure in parameters IN paramete...

Extract specific file paths in folders based on Linux commands

Recently, there is a need to automatically search...

Three examples of blur background effects using CSS3

Let’s not start with the introduction and get str...

MySQL 5.7 mysql command line client usage command details

MySQL 5.7 MySQL command line client using command...

Cross-browser development experience summary (I) HTML tags

Add a DOCTYPE to the page Since different browser...

How to add file prefixes in batches in Linux

You need to add "gt_" in front of the f...

Solution to Chinese garbled characters when operating MySQL database in CMD

I searched on Baidu. . Some people say to use the...

How to implement distributed transactions in MySQL XA

Table of contents Preface XA Protocol How to impl...

A simple way to implement all functions of shopping cart in Vue

The main functions are as follows: Add product in...

Basic tutorial on using explain statement in MySQL

Table of contents 1. Overview 1. Explain statemen...

What is Nginx load balancing and how to configure it

What is Load Balancing Load balancing is mainly a...

JavaScript singleton mode to implement custom pop-up box

This article shares the specific code of JavaScri...

Nginx anti-crawler strategy to prevent UA from crawling websites

Added anti-crawler policy file: vim /usr/www/serv...