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