Horizontal Centered image
A way to horizontal center an image in a box
by rulokc
HTML
<div class="container">
<img src="http://lorempixel.com/500/100/nature/1"/>
</div>
Resize the window
CSS
.container {
width: 100%;
max-width: 500px;
height: 110px;
margin: 0 auto;
overflow: hidden;
}
.container img {
display: block;
margin: 0 calc((100% - 500px) / 2);
}