Requires responsive img inside the container with maximum width.
HTML:
<div class="center-content"> <img src="assets/test-slider.png" alt="" /> </div>
CSS
.center-content{ position:relative; max-width:1200px; margin:0 auto;} img{ max-width: 100%; height: auto; }
This works fine in -webkit, but not in firefox ...
Any help would be appreciated.
/ EDIT /
http://jsfiddle.net/WKHHR/
Check the difference between Firefox and Chrome
ronni source share