jhoneycutt@apple.com | 58632eb | 2015-10-06 18:39:21 +0000 | [diff] [blame] | 1 | <!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> |