الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .gradient-closet-side { height: 100px; background: #00188F; background: repeating-radial-gradient(ellipse closest-side, #00188F, #EC008C 30%); } .gradient-closet-corner { height: 100px; background: #00188F; background: repeating-radial-gradient(ellipse closest-corner, #00188F, #EC008C 30%); } .gradient-farthest-side { height: 100px; background: #00188F; background: repeating-radial-gradient(ellipse farthest-side, #00188F, #EC008C 30%); } .gradient-farthest-corner { height: 100px; background: #00188F; background: repeating-radial-gradient(ellipse farthest-corner, #00188F, #EC008C 30%); } </style> </head> <body> <h1>Repeating Radial Gradient Size</h1> <p>background: repeating-radial-gradient(ellipse closest-side, #00188F, #EC008C 30%)</p> <div class="gradient-closet-side"></div> <p>background: repeating-radial-gradient(ellipse closest-corner, #00188F, #EC008C 30%)</p> <div class="gradient-closet-corner"></div> <p>background: repeating-radial-gradient(ellipse farthest-side, #00188F, #EC008C 30%)</p> <div class="gradient-farthest-side"></div> <p>background: repeating-radial-gradient(ellipse farthest-corner, #00188F, #EC008C 30%)</p> <div class="gradient-farthest-corner"></div> </body> </html>