Implement a three-column layout (left-right fixed, middle-adaptive width)

Source: Internet
Author: User

HTML code (12th method):

<Divclass= "Left">Left fixed area</Div><Divclass= "Right">Right fixed area</Div><Divclass= "Mid">Intermediate Adaptive Zone</Div>

CSS code:

First method (positioning):

. Left{position:Absolute;Top:0; Left:0;width:100px;Height:200px;Background-color:Red; }. Mid{Margin-left:100px;Margin-right:200px;Height:200px;Background-color:Blue; }. Right{position:Absolute;Top:0; Right:0;width:200px;Height:200px;Background-color:Yellow; }

The second method (floating):

. Left{float: Left;width:100px;Height:200px;Background-color:Red;}. Mid{Height:200px;Background-color:Blue;}. Right{float: Right;width:200px;Height:200px;Background-color:Yellow;}

The third method (negative margin):

HTML code:

<Divclass= "center FL">  <Divclass= "Mid"> Middle Adaptive Region Adaptive Zone Intermediate Adaptive Zone Intermediate Adaptive Region Middle Adaptive Zone Intermediate Adaptive Zone Intermediate Adaptive Zone Mid Adaptive Zone Center self-adaptive area in intermediate self-adaptive region</Div></Div><Divclass= "Left fl">Left fixed area</Div><Divclass= "Right fl">Right fixed area</Div>

CSS code:

. FL{float: Left; }. Center{width:100%;Height:200px;background:Yellow;}. Center. Mid{Margin-right:100px;padding:0 110px; }. Left{Margin-left:-100%;width:100px;Height:200px;background:Green;}. Right{Margin-left:-200px;width:200px;Height:200px;background:Blue;}

Implement a three-column layout (left-right fixed, middle-adaptive width)

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.