I think that you want to align it vertically? You can try it in that way:
<div id="block">
<img src="firstimg.jpg">
<img src="secondimg.jpg">
</div>
and in CSS:
#block {
line-height: 100px;
}
#block img {
vertical-align: middle;
}
Hope it's what you needed 🙂