الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div { display: block; height: 100px; width: 100px; background: dodgerblue; transform: rotate(20deg); } </style> </head> <body> <h2>CSS rotate() function</h2> <p>The rotate() function rotates the element clockwise if you gave it a positive value.</p> <div>Transformed</div> </body> </html>