I got a working solution here which is in Codepen.
Here it is: http://codepen.io/anon/pen/NPgege
but when I created a HTML file as follow:
<html>
<head>
<style>
.container {
height: 100px;
width: 100px;
line-height: 100px;
text-align: center;
background-color: #ccc;
margin: 20px;
}
.container img {
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="container">
<img src="http://dummyimage.com/100x150/000/fff" />
</div>
<div class="container">
<img src="http://dummyimage.com/400x100/000/fff" />
</div>
<div class="container">
<img src="http://dummyimage.com/100x50/000/fff" />
</div>
</body>
</html>
although having same code, its not giving the same output Help.