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