我需要從Images文件夾中使用這個圖像。 我用它在內容/ style.css中絕對根URL css
URL( 'background.jpg')
它顯示我以下錯誤:http://localhost:50260/Content/Images/background.jpg 404(未找到)
我需要從Images文件夾中使用這個圖像。 我用它在內容/ style.css中絕對根URL css
URL( 'background.jpg')
它顯示我以下錯誤:http://localhost:50260/Content/Images/background.jpg 404(未找到)
這應該工作
背景:網址( '../圖像/ background.jpg');
你的問題有點難以理解。如果您想使用引用根目錄的圖像,然後像這樣將工作:
background: url('/images/background.jpg');
在URL開始的/說來引用根。
的可能的複製[JavaScript的/ CSS /圖片參考路徑(http://stackoverflow.com/questions/374305/javascript-css-image-reference-paths) –