This article mainly introduces the calc() method of CSS 3 in detail. It is very good and has reference value. Friends who need it can refer to it. I hope it can help everyone.
The following code introduces you to the calc() method in CSS3. The specific content is as follows:
##
<p style="width:100px; height:50px; background:red;"> <p style="width:100%; height:20px; margin:5px; background:green;"></p> </p>
<p style="width:100px; height:50px; background:red;"> <p style="width:calc(100% - 10px); height:20px; margin:5px; background:green;"></p> </p>
Instructions for use
Support
All mainstream desktop browsers support it. It is said that mobile browsers hardly support it. Related recommendations:Detailed introduction to the new property calc() in CSS3
Response to calc() in CSS3 Introduction to pattern layout methods
Instructions for using the calc() attribute in CSS3 to express size values with calculations
The above is the detailed content of Detailed explanation of calc() usage in CSS3. For more information, please follow other related articles on the PHP Chinese website!