|
热门文章 |
|
|
|
|
CSS实现漂亮的图片立体边框效果 |
来源:中国站长天空 更新时间:2010/11/8 15:04:52 阅读次数: 我要投稿 |
|
<!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> <title>漂亮的图片立体边框效果</title> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <!--把下面代码加到<head>与</head>之间--> <style type="text/css"> .image{padding:10px;border:1px solid #000;-moz-box-shadow:3px 3px 4px #000;-webkit-box-shadow:3px 3px 4px #000;box-shadow:3px 3px 4px #000;background:#fff;filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4,Direction=135,Color='#000000');} </style> </head> <body> <!--把下面代码加到<body>与</body>之间--> <img src="http://www.cwydesign.com/effects/UploadFiles_7074/201011/2010110814520452.jpg" class="image"> </body> </html> |
|
上一篇文章: 带说明的淡入式图片幻灯切换效果下一篇文章: JavaScript改变图片重叠顺序 |
|
|