कैल्क () संपत्ति का उपयोग करके सीएसएस में गुणों के मूल्य प्राप्त करें। आप सीएसएस में कैल्क () फ़ंक्शन को लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> #demo { position: absolute; width: calc(100% - 100px); background-color: blue; text-align: center; } </style> </head> <body> <h1>Heading One</h1> <div id = "demo">This is it!</div> </body> </html>