<img src="..">
? .container {
position: relative;
}
.container img {
position: absolute;
top: 0; bottom:0; left: 0; right:0;
margin: auto;
}
<div class="block">
<img src="https://api.fnkr.net/testimg/350x200/00CED1/FFF/?text=img+placeholder">
</div>
.block {
width: 500px;
height: 400px;
display: flex;
justify-content: center;
align-items: center;
}
<div class="table">
<div class="table-cell">
<img src="">
</div>
</div>
.table{
display: table;
width: 500px;
height: 500px;
}
.table-cell{
display: table-cell;
vertical-align: middle;
}
.table-cell img{
display: block;
margin: 0 auto;
max-width: 100%;
max-height: 100%;
}