الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> #demo { position: absolute; left: 40px; width: calc(100% - 80px); border: 1px solid black; background: bisque; padding: 10px; box-sizing: border-box; } </style> </head> <body> <h1>CSS calc Function</h1> <div id="demo">Element width is calculated by the calc function.</div> </body> </html>