如何集中对齐演示上的图像?
页面上的 x 轴上没有溢出。
我希望图像完全集中在页面上 + 重要的是要知道,图像总是比页面更宽。图像必须溢出#wrap 元素,并且在页面上为 100% 宽。
HTML
<div id="wrap">
<p>somecontent here</p>
<img src="http://www.placecage.com/1000/500">
<p>some more content here</p>
<img src="http://www.placecage.com/1000/500">
below goes footer
<p>some footer text</p>
<img src="http://www.placecage.com/1000/500">
</div>
CSS
#wrap {
width:200px;
margin:0 auto;
background:lightblue;
}