CSS3 box-shadow 属性(阴影效果)
语法:
box-shadow:inset x-offset y-offset blur-radius spread-radius color
也就是:
对象选择器 {box-shadow:投影方式 X轴偏移量 Y轴偏移量 阴影模糊半径 阴影扩展半径 阴影颜色}
取值:
box-shadow属性至多有6个参数设置,他们分别取值:
阴影类型
此参数是一个可选值,如果不设值,其默认的投影方式是外阴影;如果取其唯一值“inset”,就是将外阴影变成内阴影,也就是说设置阴影类型为“inset”时,其投影就是内阴影;
更详细的内容介绍参考:http://www.cnblogs.com/lhb25/archive/2013/03/08/css3-box-shadow.html ;
例:
<style>
.yy1{width:600px;height:200px;padding:10px;background:#FFF;border:1px solid #ddd;margin:0px auto;text-align:center;line-height:200px;box-shadow:10px 10px 5px #888888;}
.yy2{width:600px;height:200px;padding:10px;background:#FFF;border:1px solid #ddd;margin:50px auto;text-align:center;line-height:200px;}
.yy2:hover{position:relative;top:-10px;left:-10px;box-shadow:10px 10px 5px #888888;}
</style>
<br/>
<div class="yy1" >Hello word!</div>
<div class="yy2" >Hello word!</div>