运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <style> .mask1 { -webkit-mask-image: url(w3logo.png); mask-image: url(w3logo.png); mask-size: 200px 200px; mask-repeat: no-repeat; } </style> </head> <body> <h1>The mask-size Property</h1> <h3>Set the size of the mask layer image to 200px 200px:</h3> <div class="mask1"> <img src="img_5terre.jpg" alt="Cinque Terre" width="600" height="400"> </div> <h3>Original image:</h3> <img src="img_5terre.jpg" alt="Cinque Terre" width="600" height="400"> </body> </html>