我有一個登陸頁面,顯示的是本地的背景圖片,但當我將它推出後,我無法在互聯網上看到它。CSS background-image
我的文件結構是很簡單的,我有一個叫做銀行經營一個根文件夾,該文件夾中我有一個css文件夾,圖片文件夾,等
下面是我的背景圖片的CSS。
body {
color: white;
background: #ee6184;
background-image: url('../images/image_01.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 180%;
margin: 0;
padding: 0;
width: 100%;
text-align: center;
}
你有沒有把圖片也放在那裏? – phantom 2014-11-02 22:39:23
您是否檢查過在瀏覽器中下載的圖像是否獲得狀態碼404(文件未找到)?通過使用開發人員檢查器中的網絡選項卡執行此操作(在大多數Windows瀏覽器中,cmd + option + i在mac或f12中) – DrewT 2014-11-02 22:41:11
我將檢查 – unlimited4311 2014-11-02 22:50:50