blob: bc821b66e9ba63a1556af17fce98af2152af37bb [file] [log] [blame]
jhoneycutt@apple.com58632eb2015-10-06 18:39:21 +00001<!DOCTYPE html>
2<style>
3#transformed {
4 overflow: hidden;
5 transform: translateZ(0);
6 height: 100px;
7 width: 100px;
8 background-color: salmon;
9}
10#fixed {
11 position: fixed;
12 background-color: chartreuse;
13 width: 100px;
14 height: 100px;
15 top: -50px;
16}
17</style>
18<div id="transformed">
19 <div id="fixed"></div>
20</div>