There are many ways to do this. It is very easy if image and its container height is known, tricky otherwise. Choose the solution that suit your needs:
HTML
<div id="divN">
<img src="http://dummyimage.com/100x50/fc0/000000.png">​
</div>
Method 1: line height, text-align and vertical align
#div1
{
width: 300px;
height: 300px;
background-color: blue;
line-height: 300px;
text-align: right;
}
#div1 img
{
vertical-align: middle;
}
Method 2: absolute/relative positioning, image height known
#div2
{
width: 300px;
height: 300px;
background-color: blue;
position: relative;
}
#div2 img
{
position: absolute;
right: 0;
top: 50%;
margin-top: -25px; /* -(image_height/2) */
}
Method 3: absolute/relative positioning, image and container height known
#div3
{
width: 300px;
height: 300px;
background-color: blue;
}
#div3 img
{
float: right;
position: relative;
top: 125px; /* (div_height-image_height)/2 */
}