الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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: repeat-y; mask-repeat: repeat-y; } </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 repeat-y value makes the mask repeat itself vertically only.</p> </body> </html>