blob: 7d2c15f83ebd2ea4db3a20af995bd96c5c416016 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
body {
height: 1000px;
}
.clipper {
margin: 20px;
padding: 10px;
width: 300px;
height: 300px;
overflow: hidden;
background-color: gray;
}
.content {
transform: translateZ(0);
background-color: green;
height: 300px;
}
</style>
</head>
<body>
<div class="clipper">
<div class="content">
&nbsp;
</div>
</div>
</body>
</html>