简体   繁体   English

为什么不使用CSS显示我的背景图像?

[英]Why wont my background image show up using CSS?

So I am trying to call a background image through a seperate CSS file. 因此,我试图通过单独的CSS文件调用背景图片。 The HTML file and CSS file are on the same level, but the background image is two levels lower. HTML文件和CSS文件处于同一级别,但是背景图像低两个级别。

Example: 例:

index.html index.html

stylesheet.css stylesheet.css

resources>assets> background-image 资源>资产> 背景图像

Here is my html: 这是我的html:

    <div class="second-background">
       <h2>Our</h2>
       <div class="purpose-heading"><h2>Purpose</h2></div>
       <p class="textstyle6">To provide unaccompanied runaway and homeless youth with a safe and nurturing environment where they can develop the needed skills to become active, healthy, successful members of our future world.</p>
       <div id="rectangle"><p class="textstyle2">7,085 MEALS SERVED. 511 DROP-IN SERVICES.<br/>245 STREET OUTREACH HOURS. 64 SHELTERED YOUTH.</p></div>
    </div>

Here is my CSS: 这是我的CSS:

.second-background {
background-image:url("../resources/assets/purpose.png");
}
#rectangle {
width: 1110px;
height: 105px;
background-color: #ffffff;
}

The path is wrong, remove the ../ from the image path in css. 路径错误,请从CSS的图像路径中删除../ If the structure is as you say it is. 结构是否如您所说的那样。

Learn more about file paths here: https://www.w3schools.com/html/html_filepaths.asp and here: https://css-tricks.com/quick-reminder-about-file-paths/ 在此处了解更多关于文件路径的信息: https : //www.w3schools.com/html/html_filepaths.asp和此处: https : //css-tricks.com/quick-reminder-about-file-paths/

The path rules break down like this: ../ means “go up one level” (that is, up to the folder containing the styles folder); 路径规则分解如下: ../表示“向上一级”(即,直到包含样式文件夹的文件夹);
images/ means “go to the images folder”; images /表示“转到图像文件夹”; and bg.gif specifies that file. 和bg.gif指定该文件。

According to the folder structure you provided : The correct way is this : 根据您提供的文件夹结构:正确的方法是:

           .second-background {
              background-image:url("resources/assets/purpose.png");
            }
           #rectangle {
             width: 1110px;
             height: 105px;
              background-color: #ffffff;
          }

Hope it helps 希望能帮助到你

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM