css3-transform-perspective-ref.html (567B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: transform perspective Reference</title> 5 <link rel="author" title="caoqixing" href="mailto:robin.webkit@gmail.com" /> 6 <link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com" /> <!-- 2013-09-03 --> 7 <style type="text/css"> 8 div { 9 width: 200px; 10 height: 200px; 11 } 12 #container { 13 position: relative; 14 background-color: green; 15 } 16 </style> 17 </head> 18 <body> 19 <p>The test passes if there is a green square and no red.</p> 20 <div id="container"></div> 21 </body> 22 </html>