DIV阴影

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>浏览器兼容</title>
<style type="text/css">

.div_shadow{
width:282px;
height:285px;
border:#909090 1px solid;
background:#fff;
color:#333;
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=2, Direction=135, Color='#000000')";  /* For IE 8 */
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#909090');  /* For IE 5.5 - 7 */
-moz-box-shadow: 2px 2px 8px #909090;/* for firefox */
-webkit-box-shadow: 2px 2px 8px #909090;/* for safari or chrome */
box-shadow:2px 2px 8px #909090;/* for opera or ie9 */
}

</style>


</head>
<div class="div_shadow" ></div>
<body>
</body>
</html>

 

posted @ 2013-11-12 11:07  TSIR  阅读(330)  评论(0)    收藏  举报