The "CSS" side is fixed wide, the other side of the adaptive layout how to do

Source: Internet
Author: User

One side is fixed wide, the side of the Adaptive page layout in the current use of a lot, what are the implementation methods?

1, by floating and margin take positive values to achieve:

The fixed width element is #sidebar

The adaptive element is #content

The CSS code is as follows:

Set float for a given wide element

#sidebar {

          Float:left;

width:200px; height:600px;

background-color:red;

}

What about the adaptive elements? Let's set the margin-left for him, which is better than the width of the above element.

#content {

width:100%; If it is a div block-level element, width is not set or can be

height:600px;

          margin-left:210px;

Background-color:black;

}

2, by floating and margin to take negative values to achieve:

The fixed width element is #sidebar

The adaptive element is #content

The CSS code is as follows:

#content {

Float:left;

width:100%;

height:600px;

  margin-right:-200px;

Background-color:black;

}

#sidebar {

Float:left;

width:200px;

height:600px;

background-color:red;

}

The "CSS" side is fixed wide, the other side of the adaptive layout how to do

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.