2017-09-18 142 views
0

我在這個論壇上和互聯網上搜索解決方案,大多數解決方案可用,但沒有爲我的情況工作...或者我不明白可能。設置一個背景圖像的寬度和高度,長寬比

我有一個背景圖像,我想這需要100%的寬度和相同的高度值。

.top-section { 
 
    background: url('../img-content/Bg1.png') no-repeat center center fixed; 
 
    background-size: cover; 
 
}
<div class="top-section"></div>

回答

0
html, body { height: 100%; } 

.top-section {  
width: 100%; 
height: 100%; 
background-image: url("'../img-content/Bg1.png"); 
background-attachment: fixed; background-size: cover; 
} 

對於其他圖片使用類似

.top-section2 { 
width: 100%; 
    height: 100%; 
    background-image: url(""); 
    background-size: cover; 
} 
+0

不要把我的高度的100%,如果你想 – Jonathan

+0

@Jonathan送我 – Aymen

+0

我發佈你的截圖請看這個鏈接:https://image.noelshack.com/fichiers/2017/38/1/1505762885-capture-d-ecran-2017-09-18-a-21-24-18.png – Jonathan

相關問題