blob: f1664e54fffee3dfae1bd4ade4af63527cfe5d8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<html reftest-zoom="1.1">
<head>
<style type="text/css">
.parent {
display: flex;
transform: translate3d(0px, 0px, 0px);
overflow: hidden;
}
.bg {
background-color: lime;
width: 200px;
height: 200px;
transform: scale(1.05);
}
.bg_overlay {
background-color: red;
width: 100px;
height: 100px;
position: absolute;
}
</style>
</head>
<body>
<div class="parent">
<div class="bg"></div>
<div class="bg_overlay"></div>
</div>
</body>
</html>
|