Css3 calc can calculate the width using simple mathematical operations, css3calc

Source: Internet
Author: User

Css3 calc can calculate the width using simple mathematical operations, css3calc

Calc is the abbreviation of the word calculate. It is a new length unit function of css3. it can be used for simple mathematical operations.

Firefox uses the-moz-calc () private attribute,

Chrome uses the-webkit-calc () private attribute,

IE9 native supports standard writing without a prefix,

Opera is not supported yet.

Operation Rules

You can use the "+"-"" * ""/"Four arithmetic operations (" + "and"-"must have spaces on the sides of the two symbols, the "*" and "/" symbols are not mandatory ),

You can use percentages, px, em, rem, and other units,

You can use multiple units for calculation.

. Content {border: 1px solid #000;/* '+'-'sign with spaces on both sides */width: calc (100%-2px );}. content2 {/* '+ ''-' sign with spaces on both sides */width: calc (10em + 10px);}/* three-column wide Layout */. content3 {margin-left: 20px;/* '+'-'Signs plus spaces on both sides,' * '/' symbol does not add */width: calc (100%/3-20px);}/* n is the multiplier starting from 0, increasing by 1 in sequence, for example, 3*1, the child element after the result is multiplied by 3*2 */. content3: nth-child (3n) {margin-left: 0 ;}

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.