blob: 73b420189ec8bc073e8b6a2e4bfd628653bd4a78 [file] [log] [blame]
<!DOCTYPE html>
<style>
div {
position: absolute;
}
.content {
width: 100px;
height: 150px;
position: absolute;
background: blue;
}
</style>
Below should be a light blue square in uniform color.
<div style="opacity: 0.5; will-change: opacity">
<div class="content" style="left: 0"></div>
<div class="content" style="left: 50px"></div>
</div>