CSS Layout Web page Horizontal Center Common method _ Experience Exchange

Source: Internet
Author: User
The horizontal center of the page is usually a headache, especially for beginners. Incompatibilities between browsers can also pose a big problem. Here's a look at the common page horizontal centering method.
See the "Mastering CSS" section below.
HTML code:

The code is as follows

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

IE will mistakenly think of Text-align:center as having everything centered, not just text. Then re-align the contents of the container to the left.

Non-IE:

The code is as follows:

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


How to be compatible with IE and non ie? as follows:

The code is as follows:

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


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

The above is the CSS Layout page Horizontal Center Common Method _ Experience Exchange content, more relevant content please pay attention to topic.alibabacloud.com (www.php.cn)!

  • 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.