我有一個div,應該始終在瀏覽器的中心。現在有一個圖片永遠在瀏覽器中間。但問題是div是960px寬,但圖片是1263px。我該如何解決問題?當瀏覽器窗口更小時,我仍然需要的是死掉,應該只在960px處來滾動條。我知道我可以在理論上解決任何問題,如果我將Tell css圖像作爲背景圖像進行整合。但是,這並不工作,遺憾的是,因爲我真的需要img標籤圖像作爲背景沒有css
#header-bottom {
height: 1245px;
background: red;
width: 960px;
margin: 0 auto;
}
.header-bottom-wrapper {
position: relative;
width: 960px;
margin: auto;
height: 545px;
}
<div id="header-bottom">
<div class="header-bottom-wrapper">
<img src="http://dummyimage.com/1263x545/000/fff">
</div>
</div>
爲什麼你真的需要圖像標記? – BenM
,因爲我使用的是jqueryslider,需要img標籤 – herrsaidy
這個問題描述是由Google翻譯給你的 - 翻譯後幾乎變得非常有意義 – Huangism