CSS相对定位实现DIV层的投影(阴影)效果
<html>
<head>
<title>DIV层阴影</title>
<style>
.out {
position:relative;
background:#E4E4E4;
margin:8px auto;
width:300px
}
.in {
background:#fff;
border:1px solid #666;
padding:10px 5px;
position:relative;
top:⑸px;
left:⑸px;
}
</style>
</head>
<body>
<div style="width:298px; margin-left:198px;">
<div class="out">
<div class="in" >CSS相对采取相对定位实现DIV层的投影(阴影)效果</div>
</div>
</div>
<div><A href="http://www.999jiujiu.com/">http://www.999jiujiu.com/</A></div>
</body>
</html>
------分隔线----------------------------
------分隔线----------------------------