الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .gradient-right-top { height: 100px; background: red; background: conic-gradient(at right top, red, blue, green, yellow); } .gradient-right-bottom { height: 100px; background: red; background: conic-gradient(at right bottom, red, blue, green, yellow); } .gradient-left-top { height: 100px; background: red; background: conic-gradient(at left top, red, blue, green, yellow); } .gradient-left-bottom { height: 100px; background: red; background: conic-gradient(at left bottom, red, blue, green, yellow); } </style> </head> <body> <h1>Conic Gradient Position</h1> <p>background: conic-gradient(at right top, red, blue, green, yellow);</p> <div class="gradient-right-top"></div> <p>background: conic-gradient(at right bottom, red, blue, green, yellow);</p> <div class="gradient-right-bottom"></div> <p>background: conic-gradient(at left top, red, blue, green, yellow);</p> <div class="gradient-left-top"></div> <p>background: conic-gradient(at left bottom, red, blue, green, yellow);</p> <div class="gradient-left-bottom"></div> </body> </html>