2016-04-14 191 views
0

我想在div class'manager-checklist'中使用圖像'CI.png'作爲背景圖片。 CI.png文件位於「圖像」文件夾中,與我參考的當前表單處於同一級別。我相信這是一個語法問題,因爲我收到了'無效的屬性信息'。設置背景圖片

.manager-checklist{ 
    position: fixed; 
    bottom: 20px; 
    left: 8px; 
    width: inherit; 
    border-style: solid; 
    border-width: 1px; 
    border-color: lightgray; 
    padding: 4px; 
    background-image: ../images/CI.png; 
} 

回答

3

background-image S的關係用url('path/to/image.png'),所以像這樣:url('../images/CI.png')。路徑周圍的引號是可選的。

+0

非常好。非常感謝你 –