New Css3 attributes: calc () and css3 attributes calc
I. Preface
Calc () Looks like a function in javascript, but in fact it is used in Css and can be used to calculate the length (width or height ), it can automatically adjust the value based on the screen of different sizes, so that the Adaptive Layout can be easily displayed under screens of different sizes. E
-Calc (75%- 20px * 2- 8px * 2); width: Calc (75%- 20px * 2- 8px * 2); }4. Set the right column styleTo the sidebar set a 25% width, in addition to containing 8px of the border, 10px of the inner distance, There is also the main content 20px to remove, or the whole width and the container will be different 20px, in other words will burst the container Fell. So the actual width of the sidebar should be "25%-1
;
padding:10px;
width:208px; /* Fallback for browsers that Don "t support the Calc () function/
width:-moz-calc (25%-10px * 2-8px * 2-20px);
width:-webkit-calc (25%-10px * 2-8px * 2-20px);
Width:calc (25%-10px * 2-8px * 2-20px);
}
In this way, you will see the above demo show the layout effect. After this example, you will not feel that usin
container will be different 20px, in other words will burst the container fell. So the actual width of the sidebar should be "25%-10px * 2-8px * 2-20px":#accessory { border:8px solid #B8C172; Float:right; padding:10px; width:208px; /* Fallback for browsers that don't support the Calc () function */ width:-moz-calc (25%-10px * 2-8px * 2-20px); C5/>width:-webkit-
' t support the Calc () function */width: -moz-Calc (75%- 20px * 2- 8px * 2); width: -webkit-Calc (75%- 20px * 2- 8px * 2); width: calc (75%- 20px * 2- 8px * 2); }4. Set the right column styleTo the sidebar set a 25% width, in addition to containing 8px of the border, 10px of the inner distance, there is also the main
-Calc (75%- 20px * 2- 8px * 2); width: calc (75%- 20px * 2- 8px * 2); }4. Set the right column styleTo the sidebar set a 25% width, in addition to containing 8px of the border, 10px of the inner distance, there is also the main content 20px to remove, or the whole width and the container will be different 20px, in other words will burst the container fell. So the actual width of the sidebar should be "25%-1
Calc () and css3calc () in css3 ()1. What is calc ()?Calc is the abbreviation of the English word calculate (calculation). It is a new feature of css3 to specify the length of an element. For example, you can use calc () to set dynamic values for attributes such as border, margin, pading, font-size, and width of an ele
Problem: When making a page, there will always be a 100% width of the elements encountered. If the element width is 100%, as long as the element is added Border,padding,margin any value, will be the element box burst (standard mode, except IE weird mode). Although the box-sizing in the CSS3 attribute solves this problem to some extent, the Calc () function function achieves the above effect more easily.What is cal
The last time we introduced the OpenOffice of the most commonly used word processing module writer and it built its own first Linux document, this time to introduce OpenOffice in the application of a wide range of Spreadsheet Module Calc.
I. Calc Overview
The spreadsheet module in OpenOffice Calc and Excel are similar in both interface and operation, and are we
1. Calc () is a new feature of CSS3 that specifies the length of the element, and you can use Calc () to dynamically set values for attributes such as border, margin, pading, font-size, and width of the element.2. Calc () syntax1 . Element {2 width:calc (expression); 3 }3. Calc () algorithm1), using "+", "-", "*" an
This time to bring you the Calc scroll bar appears the resolution of the page does not bounce, to solve the Calc scroll bar appears on the page does not beat the note what, the following is the actual case, together to see.
What is calc ()?
Calc () Literally we can interpret him as a function. In fact,
Browsing this http://www.sitepoint.com station today, because of curiosity to read the code written by others, the results found this line of code,So I studied, calc () literally, we could interpret him as a function. In fact, Calc is the abbreviation for the English word Calculate (calculation), is a new function of CSS3, which is used to specify the length of the element. For example, you can use
set the size of any place on the page, such as Padding,width,height,margin, and this size is adaptive.Ii. About Calc ()In the self-adaptive layout sometimes encountered need to have a fixed width of the place, such as a div width of the screen size of half, but there are 10px padding, that in this case if we directly to the width of 50%, or after the calculation of REM units, and then to padding, Because the relationship of the box model causes its w
Calc () and CSS3calc () in CSS3 ()What is calc ()?
Calc is the abbreviation of the English word calculate (calculation). It is a new feature of css3;
MDN can be used in any length, value, time, angle, frequency, etc;
/* Property: calc (expression) */width: calc (100%-80px
1. What is calc ()?Calc is an abbreviation for the English word Calculate (calculation) and is a new feature of CSS3 that specifies the length of the element. For example, you can use Calc () to set dynamic values for attributes such as border, margin, pading, font-size, and width for an element. The biggest benefit of Calc
1. What is calc ()?Calc is an abbreviation for the English word Calculate (calculation) and is a new feature of CSS3. Used to specify the length of the element. For example, you can use Calc () to set dynamic values for attributes such as border, margin, pading, font-size, and width for an element.The biggest advantage of Cal
What is calc ()?
Calc is an abbreviation of the English word calculate (computed) and is a new function of CSS3;
MDN can be used in any length, value, time, angle, frequency, etc.
/* PROPERTY:CALC (expression) * * Width:calc (100%-80px);
You can use the +-*/symbol to do the operation;
But note that the +-must be separated by a space;
Width:calc (100% -8px); * * This will be an error, the result is 0 *
Css3 calc (), css3calcOverview
CSS Functionscalc()Can be used in any need.calc()You can determine the size and shape of an object through calculation.
You can alsoCalc () nested inside anothercalc().How to read the CSS syntax.
calc(expression)Value
Expression
A mathematical expression. The result of this expression is used as the final
.
Expression
In this expression, you can use the follow
First, preface
Calc () looks like a function in JavaScript, and in fact it is used in CSS, it can be used to calculate the length (width or height), can automatically adjust the value according to the different size of the screen automatically, making it easy to implement the adaptive layout display in different size screen. The project often encounters elements that are always centered, and of course the first thing to think about is using margin:0
What is a calc ()? Believe that the CSS3 Study more in-depth children's shoes on the function and use of the functions are more familiar with the new web front-end, this function is still relatively unfamiliar. In fact, Calc () is a new feature of CSS3 that specifies the length of the element, and we can also interpret it as a function of the functions. Today, I would like to share with you the role of CSS3
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.