天天看點

CSS相框效果

CSS相框效果

效果圖

1、CSS樣式

.pic .box{
	background:url(/MyDemo/images/round1.png) no-repeat; 
	width:60px;
	height:60px;
	display:block;
	_background:none;
	_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="/MyDemo/images/round1.png" ,sizingMethod="crop"); 
	position:absolute; 
	width:60px;
	height:60px;
	z-index:9999;
}
.pic img{
	width:60px; 
    height:60px;
}
           

2、HTML代碼

<!--相框-->        
<div class="pic">
    <span class="box"></span>
    <img src="/images/myPic.jpg" />
</div> 
           

附件

CSS相框效果

round.png