| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>CSS Transforms Reference File</title> | |
| <link rel="author" title="Amol Shanbhag" href="mailto:amolvshanbhag@yahoo.com"> | |
| <link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com"> | |
| <style type="text/css"> | |
| div{ | |
| position: absolute; | |
| } | |
| .greenSquare { | |
| width: 100px; | |
| height: 100px; | |
| background: green; | |
| } | |
| p{ | |
| padding-top: 130px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="greenSquare"></div> | |
| <p>The test passes if there is a green square and no red.</p> | |
| </body> | |
| </html> |