transform-iframe-001-contents.html (506B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test (Transforms): Iframe (contents)</title> 5 <link rel="author" title="Clint Talbert" href="mailto:ctalbert@mozilla.com"> 6 <link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name"> 7 <style> 8 body { 9 overflow: hidden; 10 } 11 div { 12 height: 200px; 13 width: 200px; 14 background: red; 15 transform: translate(500px, 500px); 16 } 17 </style> 18 </head> 19 <body> 20 <div></div> 21 </body> 22 </html>