Solution to the problem of the entire page not being centered when using margin:0 auto in HTML

Solution to the problem of the entire page not being centered when using margin:0 auto in HTML
I wrote a jsp page today. I tried to adjust <div style="margin:0 auto">123xxx</div> but it didn't make the page display in the center. And other styles also had inexplicable problems.

Later I found the solution to this problem:

It turns out that L-Blog does not add DTD before HTML by default, so IE interprets the document as HTML instead of XHTML.
The problem is not with CSS but with the XHTML pages themselves.
You need to add the following code to make the above settings effective:

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">

If you want the stricter XHTML 1.0 Strict or XHTML 1.1 please refer to the relevant documents.
The above tests are based on IE6 and FireFox 1.0 final version on Windows XP SP2.

It is recommended that if you need to use CSS styles on the page, do not delete this line:

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">

<<:  Detailed explanation of the use and underlying principles of MySQL table partitions

>>:  Detailed explanation of the significance of standard commit msg in JavaScript development

Recommend

How to smoothly go online after MySQL table partitioning

Table of contents Purpose of the table For exampl...

SQL injection vulnerability process example and solution

Code example: public class JDBCDemo3 { public sta...

Summary of the three stages of visual designer growth

Many people have read this book: "Grow as a ...

Rules for registration form design

I finished reading "Patterns for Sign Up &...

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

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

Vue monitoring properties and calculated properties

Table of contents 1. watch monitoring properties ...

Detailed explanation of several solutions for JavaScript interruption requests

Table of contents 1 Promise Interrupt the call ch...

HTML 5.1 learning: 14 new features and application examples

Preface As we all know, HTML5 belongs to the Worl...

centos7.2 offline installation mysql5.7.18.tar.gz

Because of network isolation, MySQL cannot be ins...

MySQL calculates the number of days, months, and years between two dates

The MySQL built-in date function TIMESTAMPDIFF ca...

Detailed explanation of the failure of MySQL to use UNION to connect two queries

Overview UNION The connection data set keyword ca...

How to display TIF format images in browser

The browser displays TIF format images Copy code T...

JavaScript mobile H5 image generation solution explanation

Now there are many WeChat public account operatio...