css-scale-nested-ref.html (596B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Transforms Reference File</title> 5 <link rel="author" title="Amol Shanbhag" href="mailto:amolvshanbhag@yahoo.com"> 6 <link rel="reviewer" title="Rebecca Hauck" href="mailto:rhauck@adobe.com"> 7 <style type="text/css"> 8 div{ 9 position: absolute; 10 } 11 .greenSquare { 12 13 width: 100px; 14 height: 100px; 15 background: green; 16 17 } 18 p{ 19 padding-top: 130px; 20 } 21 </style> 22 </head> 23 <body> 24 <div class="greenSquare"></div> 25 <p>The test passes if there is a green square and no red.</p> 26 </body> 27 </html>