الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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: stretch round; } </style> </head> <body> <p class="border-img">border-image-repeat: stretch round</p> <p>Top and bottom borders are stretch.</p> <p>Left and right borders are rounded.</p> </body> </html>