blob: 133eaced06e159b1f098c0801f248f5ca4002a4e [file] [log] [blame]
<!DOCTYPE html>
<html lang="en">
<head>
<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: url(resources/circle.png);
-webkit-mask-size: 93px 87px;
-webkit-mask-repeat: round;
-webkit-mask-origin: padding-box;
-webkit-mask-clip: padding-box;
}
</style>
</head>
<body>
<div id="back">
<div id="front" />
</div>
</body>
</html>