Two common methods for CSS + DIV webpage Center

Source: Internet
Author: User

For example, the. html file code is as follows,

Reference content is as follows:
<Html>
<Head>
<Title> center DIV </title>
</Head>
<Body>
<Div id = "mainDiv>
Center div
</Div>
</Body>
</Html>

The method for implementing the center CSS Code is the first method:

Reference content is as follows:
Body
{
Text-align: center;
Background-color: # ccc;
Min-width: 780px;
}
# MainDiv
{
Width: 760px;
Border: 1px solid white;
Margin: 0 auto
}

Type 2: the CSS Code implemented by the negative blank edge location method is

Reference content is as follows:
Body {
Text-align: center
Background-color: # ccc;
Min-width: 780px;
}
# MainDiv
{
Width: 760px;
Margin-left:-pixel PX;
Left: % 50;
Positive: relative;
Border: 1px solid white
}

Well, some people will ask why we should use the "min-width" attribute to define the minimum width of the body ?, The minimum width must be greater than or equal to the div width. If not, the page content may be squeezed out of the visible area of the browser. The specific reason is that this is a browser problem. Various browsers have slightly different support for CSS.

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.