0
我有一個尺寸爲2000x160的圖像我必須將它作爲標題以1:1的比例。如何在比例1中插入圖像:1
我有這個標記,但它不會工作。
<div id="header">
<a href="#" style="display:block;width:100%;height:160px;"><img src="/images/header-bg.jpg" alt="header"></a>
</div>
CSS
/*header*/
#header {
padding: 0;
margin: 0;
background: #5f9936;
height: 160px;
width: 100%;
}
#header img {
height: 160px;
}
嘗試指定的寬度和高度爲''標籤的屬性 – apohl
做工精細這裏http://jsfiddle.net/j08691/dJfDS/ – j08691
我並不感到驚訝。 'width:100%'意味着容器的100%,而不是圖像本身。改爲使用'width:2000px'。如果有必要,可以用'overflow:hidden'做些什麼來擺脫產生的水平滾動條。 –