"CSS face question" Three div requires horizontal alignment, left and right two div width fixed to 100px, the middle of the div filled with the remaining width (at least 2 ways)

Source: Internet
Author: User

This is my interview in a company encountered problems, then did not answer!!

So see the small partners must pay attention to!!

Change the browser width to see the effect:

Right and left.

Then we'll look at the code:

First method: (floating)

<styletype= "Text/css">. Left,.right,.center{Border:1px solid;Height:100px;text-align:Center;Line-height:100px;font-size:50px;        }. Left{float: Left;width:100px;        }. Right{float: Right;width:100px;        }. Center{margin:0 100px;        }</style><Div>    <Divclass= "Left">Left</Div>    <Divclass= "Right">Right</Div>    <Divclass= "Center">In</Div></Div>

Second method: (absolute positioning)

<styletype= "Text/css">. Container{position:relative;        }. Left,.right,.center{position:Absolute;/*Increase absolute Positioning*/Top:0;Border:1px solid;Height:100px;text-align:Center;Line-height:100px;font-size:50px;        }. Left{ Left:0;width:100px;        }. Right{ Right:0;width:100px;        }. Center{width:Auto; Left:100px; Right:100px;        }</style><Divclass= "Container">    <Divclass= "Left">Left</Div>    <Divclass= "Right">Right</Div>    <Divclass= "Center">In</Div></Div>

Of course there are many ways, if you have any better way, I hope you can comment out below, we all study together

"CSS face question" Three div requires horizontal alignment, left and right two div width fixed to 100px, the middle of the div filled with the remaining width (at least 2 ways)

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.