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