blob: 1c0222f7b9456787d3a93fbcf19bd1b798303b90 [file] [log] [blame]
<html>
<head>
<style>
div {
-webkit-transform: translateZ(0);
width: 200px;
height: 200px;
}
span {
position: absolute;
opacity: 0;
}
.child {
opacity: 0.7;
background: green;
}
.container {
opacity: 0.7;
}
body > div {
opacity: 0.7;
}
</style>
</head>
<body>
<div><span></span>
<div class="container"><span></span>
<div class="child"><span></span></div>
</div>
</div>
</body>
</html>