| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>CSS Test (Transforms): iframe scroll position</title> | |
| <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com"> | |
| <style> | |
| #iframe { | |
| border: 0; | |
| width: 50px; | |
| height: 50px; | |
| border: solid; | |
| } | |
| #iframe div { | |
| width: 25px; | |
| height: 50px; | |
| float: left; | |
| } | |
| .rotate { | |
| transform: rotate(90deg); | |
| } | |
| </style> | |
| <body onload="onLoad();"> | |
| <div id="iframe"> | |
| <div style="background: blue;"></div> | |
| <div style="background: green;"></div> | |
| </div> | |
| </body> | |
| </html> |