transform-transformed-td-contains-fixed-position-ref.html (706B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Transformed td contains fixed position elements reference.</title> 5 <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> 6 <style> 7 body { 8 overflow: hidden; 9 } 10 .pad { 11 height: 50px; 12 } 13 .container { 14 transform: translateX(20px) rotate(45deg); 15 transform-origin: left; 16 } 17 .fixed { 18 position: fixed; 19 top: 15px; 20 left: 10px; 21 background-color: lightblue; 22 } 23 </style> 24 </head> 25 <body> 26 <div class='pad'></div> 27 <div class='container'>some text<div class='fixed'>fixed</div> 28 </div> 29 </body> 30 </html>