الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> img { -webkit-mask-image: url(/tutorials/css/masking/mask.png); mask-image: url(/tutorials/css/masking/mask.png); } </style> </head> <body> <h1>CSS mask-image Property</h1> <p>This property is used to set a mask for the element.</p> <img src="/tutorials/css/masking/nature.png" /> <p>Both the image and the mask image have the same size. That's why the mask image is not repeated.</p> <p>Note: To make the image and its mask responsive we need to set their maximum size.</p> </body> </html>