blob: 2fd15ef9b5d807b458b8c38d8c238b27bb9510eb [file] [log] [blame] [edit]
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="fuzzy" content="maxDifference=0-180;totalPixels=2300-4350" />
<style>
#back {
width: 500px;
height: 500px;
background-color: green;
}
#front {
width: 300px;
height: 300px;
background-color: red;
border: 50px solid blue;
padding: 50px;
-webkit-mask-image: url("resources/circle.png");
-webkit-mask-size: 100px;
-webkit-mask-repeat: space space;
-webkit-mask-origin: content-box;
-webkit-mask-clip: content-box;
}
</style>
</head>
<body>
<div id="back">
<div id="front" />
</div>
</body>
</html>