CSS Layout Web page Horizontal Center Common method _ Experience Exchange

Source: Internet
Author: User
Tags wrapper
The center of the page is generally a headache, especially for beginners. Incompatibilities between browsers can also pose a major problem. Here's a common way to center the page horizontally.
See "Proficient in CSS" below.
HTML code:
Copy Code code as follows:

<body>
<div id= "wrapper" >
</div>
</body>
IE Center method:
Body {
Text-align:center;
min-width:760px;
}
#wrapper {
width:720px;
Text-align:left;
}

IE will mistake text-align:center for everything centered, not just text. Then, the contents of the container are again aligned to the left.

Non ie:
Copy Code code as follows:

#wrapper {
width:720px;
margin:0 Auto;
}

How to be compatible with IE and non ie as follows:
Copy Code code as follows:

#wrapper {
width:720px;
position:relative;
left:50%;
margin-left:-360px;
}

First, position the left edge of the container in the middle of the page, and then move it to the left half of its width.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.