当前位置: 代码迷 >> Web前端 >> 给层设立阴影
  详细解决方案

给层设立阴影

热度:78   发布时间:2012-11-06 14:07:00.0
给层设置阴影
<style type="text/css">
.frame {position:relative; background-color:green;width:100px;height:100px;}
.shadow {float:left;background:#000; filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='5', MakeShadow='true', ShadowOpacity='0.60');}
</style>

<div class="shadow">
<div class="frame"></div>

</div>
?
  相关解决方案