簡體   English   中英

背景圖像 (CSS) 不會出現在網站上

[英]Background Images (CSS) wont show up on site

我已經嘗試了一切,但我的背景圖片不會顯示

圖像在圖像文件夾中

我的文件鏈接到 CSS

<link rel="stylesheet" href="css/style.css">

html 上也有以下幾行

<div id="bgImage" class="bgImageClass">
    
    </div>

同時在style.css

.bgImageClass {

 background-image: url('../images/background.jpg');

}
#bgImage { 
    position:absolute; width:300px; height:250px;
transition: opacity 0.5s;
}

我希望有人能幫幫忙

先感謝您

試試這些 CSS styles 來顯示背景圖像。

 .bgImageClass { background-image: url('https://dummyimage.com/16:9x1080'); background-size: cover; background-repeat: no-repeat; background-position: center; position:absolute; width:300px; height:250px; transition: opacity 0.5s; }
 <div id="bgImage" class="bgImageClass"></div>

class 選擇器或 id 選擇器中混合所有這些屬性,如下所示:

.bgImageClass { 
         background-image: url('../../image/background.jpg'); 
background-size: cover;
background-repeat: no-repeat;
background-position: center;
position:absolute; 
width:300px; 
height:250px; 
transition: opacity 0.5s; 
   }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM