blob: fff3d91e7d640dd3fdcdf8ccf963c2e593f79f3c (
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
32
33
34
|
<!DOCTYPE html>
<title>
Transform animation generates a containing block for fixed-pos descendants
even if the animation value is 'transform:none'
</title>
<style>
#parent {
visibility: hidden;
animation: anim 100s step-end;
}
#fixed {
position: fixed;
background-color: green;
height: 100px;
width: 100px;
}
#scroll {
overflow-y: scroll;
overflow-x: hidden;
height: 80px;
width: 100px;
}
@keyframes anim {
0% { transform: none; }
100% { transform: translateX(0px); }
}
</style>
<div id="scroll">
<div id="parent">
<div id="fixed"></div>
</div>
</div>
|