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