الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div { display: block; height: 100px; width: 100px; background: dodgerblue; translate(-10px, -40px); } </style> </head> <body> <h2>CSS translate() function</h2> <p>The translate() function moves the element on the X and Y axis.</p> <div>Transformed</div> </body> </html>