blob: 83e58ab158fa81059aa486b276d22b9353e4544e [file] [log] [blame] [edit]
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="fuzzy" content="maxDifference=0-2;totalPixels=191000-212750" />
<style>
#back {
width: 1000px;
height: 600px;
background-color: green;
}
#front {
width: 800px;
height: 400px;
background-color: red;
border: 50px solid blue;
padding: 50px;
-webkit-mask-image: linear-gradient(45deg, white, black);
-webkit-mask-source-type: luminance;
-webkit-mask-size: 200px 200px;
-webkit-mask-repeat: repeat;
-webkit-mask-origin: border-box;
-webkit-mask-clip: border-box;
}
</style>
</head>
<body>
<div id="back">
<div id="front" />
</div>
</body>
</html>