嘿,我正在建設一個網站!我試圖讓background-image
適合整個div.section
。我試過height: 100%; width: 100%;
,但沒有奏效。我需要一些幫助。HTML,CSS:如何在沒有任何內容的情況下在整個div中顯示圖像
這需要有背景圖像的代碼的一部分:
.section {
background: url("http://i.imgsafe.org/50f3f94.jpeg") no-repeat center/cover;
height: 100%;
width: 100%;
}
我上的jsfiddle完整代碼:https://jsfiddle.net/2Lqxqw10/(請務必使結果最大的寬度)或其他鏈接:https://mahalakshmi-consultants-shreyas1703.c9users.io/index.html
謝謝你提前!
'背景尺寸:100%100%;' –
你'.section'元件不具有高度,從而圖像與0像素高度顯示。 –
使用像素而不是百分比 –