الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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: 100%; mask-size: 100%; } </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>Note: We make the image and the mask image have 100% as max-width to make them responsive.</p> <p>Also, both the image and the mask image have the same size. That's why the mask image is not repeated.</p> </body> </html>