简体   繁体   中英

Background Image not showing up in jumbotron

I do not know what the problem is. I made a style.css and used this as my code

.jumbotron {
    background-image:url(images/bikebg.jpg);
    margin-top:-20px
}

before putting the background in the images folder, it worked fine. But since I changed it, it will no longer work. The site is live here http://bikesite.web44.net/bikes.html

try this

   .jumbotron {
        background-image:url(../images/bikebg.jpg);
        margin-top:-20px
    }

your folder path was wrong

try

url(../images/bikebg.jpg);  

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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