blob: ea2c1e2d0ce32d9592fee7c31cb75747e280ebfc [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body { overflow: hidden; }
#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: url(resources/dice.png);
mask-source-type: luminance;
-webkit-mask-size: 200px auto;
-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>