上传图片显示圆头像CSS
用一个div套住img 然后依次为div设置样式 .commentAvatarDiv{
width: 32px;
height: 32px;
padding:2px;
background: #ececec;
border-radius:32px;
box-shadow: 0px 0px 1px rgba(0,0,0,0.4);
-moz-border-radius: 32px;
-webkit-border-radius: 32px;
}
为img设置样式 .commentAvatarImage{
width:32px;
height:32px;
line-height: 0; /* remove line-height */
display: inline-block; /* circle wraps image */
border-radius: 50%; /* relative value */
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
transition: linear 0.25s;
}
还没有评论,来说两句吧...