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