盒子阴影

来源:互联网 发布:淘宝推广包括腾讯新闻 编辑:程序博客网 时间:2024/05/17 07:41
<!DOCTYPE html><html><head>    <meta charset="UTF-8" />    <title>Document</title>    <style type="text/css">        div{            margin:50px;            width: 300px;            height: 300px;            background: green;            box-shadow:5px 5px 10px 20px red,15px 15px 10px 20px blue;        }        p{            width: 200px;            height: 200px;            background: pink;            margin:50px;            box-shadow: 0 0 10px 20px gold inset;        }    </style></head><body>    <div></div>    <p></p></body></html>

0 0