CSS 中的背景图像未显示

问题描述 投票:0回答:1

我想显示网页正文的背景,我尝试直接使用 CSS 中的背景图像,但图像没有显示,我检查并验证了图像的扩展名和路径,但它仍然没有显示显示。以下是我的代码,我应该应用哪些更改。

.navigation {
background-image: url('Images/Logo.png');
background-repeat: repeat;
background-size: cover; 
background-attachment: fixed;
}
html css image background-image
1个回答
0
投票

你好! 如果您的 css 文件位于单独的文件夹中,您可以尝试此操作: 背景图片: url('../Images/Logo.png');

© www.soinside.com 2019 - 2024. All rights reserved.