A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

为什么没有任何的效果?
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>练习</title>
<style type="text/css">
#box{
background: #fff;
}
#box-shadow {
width: 100px;
height: 100px;
margin:0 auto;
-o-box-shadow: inset 0 0 30px hsl(60,0%,0%),inset 0 0 50px hsl(60,97%,53%,1);
-webkit-box-shadow:  inset 0 0 30px hsl(60,0%,0%), inset 0 0 50px hsl(60,97%,53%,1);
-moz-box-shadow:  inset 0 0 30px hsl(60,0%,0%), inset 0 0 50px hsl(60,97%,53%,1);
box-shadow:  inset 0 0 30px hsl(60,0%,0%), inset 0 0 50px hsl(60,97%,53%,1);
}

</style>
</head>
<body>
<div id="box">
<div id="box-shadow">
多重阴影
</div>
</div>
</body>
</html>

1 个回复

倒序浏览
inset 0 0 50px hsl(60,97%,53%,1)
这个用到了透明属性,要用 hsla(60,97%,53%,1) 就是hsl后要加个a
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马