<html>
<head>
<style>
.mask1 {
mask-image: url(/i/logo/w3.png); /* WebKit 浏览器中的遮罩图像 */
mask-image: url(/i/logo/w3.png); /* 标准遮罩图像 */
mask-size: 70%; /* 遮罩图像大小设置为 70% */
mask-repeat: no-repeat; /* 遮罩图像不重复 */
}
</style>
</head>
<body>
<h1>mask-size 属性</h1>
<h3>将遮罩层图像的大小设置为 70%:</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>