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