CSS实现表格阴影
发布网友
发布时间:2022-04-20 04:07
我来回答
共3个回答
热心网友
时间:2022-04-06 12:08
1、实践代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>CSS实现表格阴影</title>
</head>
<body>
<table width=300 height=215 align=left bordercolor="#FF9966" bgcolor=#f3f3f3
style="filter:progid:DXImageTransform.Microsoft.Shadow
(Color=#666666,Direction=120,strength=5)">
<tr>
<td width="230" bgcolor="#FF9966" align="center">
这是一个表格阴影特效,用CSS实现的。</a>
</td>
</tr>
</table>
</body>
</html>
2、用纯CSS代码实现的表格阴影代码,这里仍然是用到了filter属性,至于阴影阴影透明义或偏移角度可以自选调整,仅提供一种思路。
热心网友
时间:2022-04-06 13:26
我这里有一个超级简单的方法,但是阴影效果没你的好。
.out {
position:relative;
background:#bbb;
margin:10px auto;
width:100%;
}
.in {
background:#fff;
border:1px solid #555;
padding:10px 5px;
position:relative;
top:-5px;
left:-5px;
}
<div class="out">
<div class="in" >
<p>这里填写内容这里填写内容这里填写内容这里填写内容这里填写内容这里填写内容这里填写内容</p>
<p>把需要阴影的东西放在id为in的div里就可以了。</p>
</div>
</div>
参考资料:http://www.cainiao8.com/web/cssing/3/01.html
热心网友
时间:2022-04-06 15:00
这个只有在IE6等几个少数的才支持