الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .border-img { padding: 15px; border: 10px solid cornflowerblue; border-image-source: url(/tutorials/css/border-image/border.png); border-image-slice: 30; border-image-repeat: round stretch; } </style> </head> <body> <p class="border-img">border-image-repeat: round stretch</p> <p>Top and bottom borders are rounded.</p> <p>Left and right borders are stretch.</p> </body> </html>