الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!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: 50%; mask-size: 50%; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center center; mask-position: center center; } </style> </head> <body> <h1>CSS mask-position Property</h1> <p>This property is used to specify where the mask will be applied.</p> <img src="/tutorials/css/masking/nature.png" /> <p>The "center center' value makes applied in the center of the element.</p> </body> </html>