الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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: 20%; mask-size: 20%; } </style> </head> <body> <h1>CSS mask-size Property</h1> <p>This property is used to set the mask size.</p> <img src="/tutorials/css/masking/nature.png" /> <p>By default, when the mask size is not match the size of the element, it will repeat itself to match it.</p> <p>Note: you can use the mask-repeat property to specify how the mask-image should be repeated.</p> </body> </html>