<html>
<head>
<style>
.mask1 {
mask-image: url(/i/logo/w3.png);
mask-image: url(/i/logo/w3.png);
mask-size: 200px 200px;
mask-repeat: no-repeat;
}
</style>
</head>
<body>
<h1>mask-size 属性</h1>
<h3>将遮罩层图像的大小设置为 200 像素 × 200像素:</h3>
<div class="mask1">
<img src="/i/photo/beijing.jpg" alt="北京" width="600" height="400">
</div>
<h3>原始图像:</h3>
<img src="/i/photo/beijing.jpg" alt="北京" width="600" height="400">
</body>
</html>