我有一個頁腳菜單,其背景是圖像。如果圖像大於div,則強制佔據div
我想顯示所有圖像(bacground圖像比div大2000x168)。我設置寬度100%,但它似乎沒有顯示整幅圖像,它是隻顯示我的屏幕大小
我如何可以顯示完整的圖像,不僅如此,我能夠在我的屏幕上看到的部分?
這裏是一個fiddle
#bottomnav{
width:100%;
height:50px;
background: no-repeat url(http://eurekavi.com/barraroja.png) /*repeat 0 0*/;
position:absolute;
bottom:0px;
}
圖像看起來應該像
看一看CSS3的背景-size屬性。 –
[Stretch and scale a CSS image in the background - with CSS only]可能的重複(http://stackoverflow.com/questions/1150163/stretch-and-scale-a-css-image-in-the-background-與-CSS-只) – isherwood