الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> div { display: block; height: 100px; width: 100px; background: dodgerblue; margin: 0 20px; transform: skew(-20deg); } </style> </head> <body> <h2>CSS skew() function</h2> <p>The skew() function skews the element along the X-axis only by the given angle if you gave it one value.</p> <div>Transformed</div> </body> </html>