blob: 82c0710c9231a36acbad635f84f1ce47957b2cf8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.clipping {
position: absolute;
z-index: 0;
top: 20px;
left: 20px;
overflow: hidden;
height: 300px;
width: 300px;
margin: 10px;
border: 1px solid black;
}
.sharing {
position: relative;
top: 50px;
left: 50px;
width: 180px;
height: 180px;
background-color: green;
}
.transformed {
transform: rotate(45deg);
}
.trigger {
transform: translateZ(0);
width: 50px;
height: 50px;
background-color: silver;
}
</style>
</head>
<body>
<div class="composited trigger"></div>
<div class="clipping">
<div class="sharing transformed box">
</div>
</div>
</body>
</html>