Conversion formulas and examples for width percent units

Source: Internet
Author: User

Target width/Context width = result (proportional width)

The pixel width of the current element, the pixel width of the parent element of the current element = The percentage width of the current element

For example:

Copy Code code as follows:
<div id=wrapper>
<section></section>
<aside></aside>
</div>


Original CSS:

Copy Code code as follows:
#wrapper {width:1000px;}
header {width:1000px;}
aside {width:220px;float:left;}
section {width:770px;float:right;}


percent width CSS:

Copy Code code as follows:


#wrapper {width:98%;} Specify the perimeter width, the values are arbitrary
header{width:100%;} Set of Formula 1000÷1000 (this 1000 is wrapper width) =1=100%
Aside{width:22%;float:left;} Set of Formula 220÷1000=0.22=22%
Section{width:77%;float:right;} Set of Formula 770÷1000=0.77=77%

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.