الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div { display: block; height: 100px; width: 100px; margin: 20px; background: dodgerblue; transform: scale(1.2); } </style> </head> <body> <h2>CSS scale() function</h2> <p>The scale() function increases or decreases the size of the element.</p> <div>Transformed</div> </body> </html>