I know this is duplicate but sorry as solution given on other post seems not working for me or I didn't got them correctly.
I need to vertically align text and image to middle. Tried CSS property vertical-align:middle but it seems, is not working. My code is given at JSFiddle and as follow
<div class="picacollinvitecoll">
<span>Other Collaborators:</span>
<img width="20px" height="20px" src="https://m.ak.fbcdn.net/profile.ak/hprofile-ak-ash4/187580_670310756_917182522_q.jpg" title="Kapil Sharma" />
<img width="20px" height="20px" src="https://m.ak.fbcdn.net/profile.ak/hprofile-ak-ash4/187580_670310756_917182522_q.jpg" title="Kapil Sharma" />
<img width="20px" height="20px" src="https://m.ak.fbcdn.net/profile.ak/hprofile-ak-ash4/187580_670310756_917182522_q.jpg" title="Kapil Sharma" />
</div>
CSS properties are
.picacollinvitecoll span{
margin:0;
}
.picacollinvitecoll img{
margin-top: 3px;
}
I'm getting output as shown on JSFiddle, which is aligned at the bottom. Can someone please update JSFiddle to make it align at 'middle'.