边框阴影的练习

来源:互联网 发布:淘宝抢购秒杀快速付款 编辑:程序博客网 时间:2024/05/16 03:35

边框阴影的练习

<!doctype html><html lang="en"> <head>  <meta charset="UTF-8">  <meta name="Generator" content="EditPlus®">  <meta name="Author" content="">  <meta name="Keywords" content="">  <meta name="Description" content="">  <title>Document</title>  <style>.shadow{     -webkit-box-shadow: #666 0px 0px 10px;     -moz-box-shadow: #666 0px 0px 10px;     box-shadow: #666 0px 0px 10px;     background: #EEFF99;     width:200px;   height:200px;}    </style> </head> <body>  <div class='shadow'></div> </body></html>

效果如下


原创粉丝点击