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