Why when I set image src from facebook picture, the image is margined top (there is a blank space at the top)?
here is the html code for img
$('.raters-div').append("<div class='rater-img'><div class='rate-value'>"+value+
"</div><img src='https://graph.facebook.com/"+user+"/picture' class='img123' /></div>");
css style
.rater-img{
float: right;
background-color: red;
margin-right: 1px;
height: 30px;
width: 30px;
padding: 0px;
margin-top: 3px;
}
.img123{
margin: 0px;
padding: 0px;
width:30px;
vertical-align: top;
}
.rate-value{
top: 17px;
right: 16px;
position: relative;
color: #fff;
font-size: 11px;
font-weight: bold;
padding: 1px;
text-align: center;
height: 11px;
width: 11px;
z-index: 500;
background-color: #000;
}