الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .gradient { height: 200px; background: #00188F; background: repeating-radial-gradient(circle, #00188F 10%, 10%, #7600EC 20%, 20%, #e19010 30% 30%); } </style> </head> <body> <h1>Repeating Radial Gradient Stop Points</h1> <p>background: repeating-radial-gradient(circle, #00188F 10%, 10%, #7600EC 20%, 20%, #e19010 30% 30%);</p> <div class="gradient"></div> <p>Note: The browser may mix first and last color together.</p> </body> </html>