InterviewSolution
Saved Bookmarks
| 1. |
How does Calc work? |
|
Answer» The CSS3 calc() function allows US to perform mathematical operations on property values. Instead of declaring, for example, static pixel values for an element's width, we can use calc() to specify that the width is the result of the addition of two or more numeric values. .foo { Width: calc(100PX + 50px)} |
|