css3-box-shadow.html (741B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>CSS Box-shadow Test: the test passes if adding one or more shadow to the box</title> 6 <link rel="author" title="Xie Bing" href="mailto:451887565@qq.com"> 7 <link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-03 --> 8 <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-width"> 9 <link rel="match" href="reference/css3-box-shadow-ref.html"/> 10 <style type="text/css"> 11 div{ 12 width:300px; 13 height:100px; 14 background-color:#ff9900; 15 box-shadow:10px 10px black; 16 } 17 </style> 18 </head> 19 <body> 20 <p>The test passes if there is a black shadow behind the orange box.</p> 21 <div></div> 22 </body> 23 </html>