Solution to the problem that a line is left blank for no reason on the utf8-encoded page under IE and the utf8 page cannot be displayed

Solution to the problem that a line is left blank for no reason on the utf8-encoded page under IE and the utf8 page cannot be displayed
The reason is that all files are encoded in utf8. When the file is included, the final binary stream contains multiple UTF8 BOM tags. IE cannot parse the page containing multiple UTF8 BOM tags normally, and directly replaces them with the actual displayed carriage return, which results in a blank line. Firefox does not have this problem.
Therefore, if the template uses the inclusion method to include multiple utf8 files and needs to be saved using UltraEdit, select utf8 without BOM format in the Save As function.
In addition, if a Chinese page places the title tag before <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> in the html head tag, the page will be blank.
So utf8 pages should use standard order


Copy code
The code is as follows:

<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="content-language" content="zh-CN" />
<meta name="robots" content="index,follow" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="rating" content="general" />
<meta name="author" content="" />
<meta name="copyright" content="" />
<meta name="generator" content="" />
<title></title>

<<:  A complete explanation of MySQL high availability architecture: MHA architecture

>>:  setup+ref+reactive implements vue3 responsiveness

Recommend

How to use axios to filter multiple repeated requests in a project

Table of contents 1. Introduction: In this case, ...

JavaScript parseInt() and Number() difference case study

Learning objectives: The two functions parseInt()...

MySQL database basic syntax and operation

MySQL database basic syntax DDL Operations Create...

Detailed configuration of Nginx supporting both Http and Https

It is almost a standard feature for websites nowa...

Tutorial on installing Microsoft TrueType fonts on Ubuntu-based distributions

If you open some Microsoft documents with LibreOf...

Docker Basics

Preface: Docker is an open source application con...

Implementation of MySQL custom list sorting by specified field

Problem Description As we all know, the SQL to so...

About installing python3.8 image in docker

Docker Hub official website 1. Search for Python ...

Advanced and summary of commonly used sql statements in MySQL database

This article uses examples to describe the common...

DOM operation table example (DOM creates table)

1. Create a table using HTML tags: Copy code The ...

HTML table markup tutorial (4): border color attribute BORDERCOLOR

To beautify the table, you can set different bord...

Detailed explanation of cocoscreater prefab

Table of contents Prefab How to create a prefab T...

Introduction and use of five controllers in K8S

Table of contents Controller type of k8s Relation...

Enable sshd operation in docker

First, install openssh-server in docker. After th...