الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .border-img { padding: 20px; border-image-source: url(/tutorials/css/border-image/border.png); border-image-width: 10px; border-image-slice: 30; border-image-repeat: round; } </style> </head> <body> <p class="border-img">border-image-width: 10px;</p> <p>Note: Without padding, content will apears above the border image.</p> <p>In addition padding should bigger than border-image-width.</p> </body> </html>