الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> img { max-width: 100%; -webkit-mask-image: url(/tutorials/css/masking/mask.png); mask-image: url(/tutorials/css/masking/mask.png); -webkit-mask-size: 30%; mask-size: 30%; -webkit-mask-repeat: space; mask-repeat: space; } </style> </head> <body> <h1>CSS mask-repeat Property</h1> <p>This property is used to specify how the mask will be repeated.</p> <img src="/tutorials/css/masking/nature.png" /> <p>The space value makes the mask repeat itself as long as it need without cutting.</p> </body> </html>