简体   繁体   中英

Background img not showing up

I am trying to make a background header image to be responsive. I need it to be 100% of the viewport height or the image height, whichever is smaller.

An example would be the header banner similar to https://brittanychiang.com/v1/

The div size looks correct but the image don't seems to be showing up?

Created a jsfiddle here : https://jsfiddle.net/pnnxm1yf/2/

 header { height: 100vh; max-height: 850px; } #header-banner { color: #fff; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(https://unsplash.com/?photo=gzH1qxPLXtA) center center no-repeat; background-size: cover; position: relative; } 
 <p>Why is my image not showing up?</p> <header> <section id="header-banner"> </section> </header> <p>content after image</p> 

Add height: 100% to your #header-banner . Its height is 0 atm.

You need to add the height property onto the same element that has the background image.

#header-banner {
    height: 100vh;
    max-height: 850px;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(https://unsplash.com/?photo=gzH1qxPLXtA) center center no-repeat;
    background-size: cover;
    position: relative;
}

Adding height to your header-banner will solve the issue. Plus, please get your image url correct.

#header-banner {
    color: #fff;
    /* background: #ffffff url(img_tree.png) center center no-repeat; */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(https://unsplash.com/?photo=gzH1qxPLXtA) center center no-repeat;
    background-size: cover;
    /* background-color: red; */
    position: relative;
    height: 100%;
    width: 100%;
}

you did not add the img url properly & if you solve it you will get your output properly

 <!DOCTYPE html> <html> <head> <style> #borderimg { border: 10px solid transparent; padding: 15px; -webkit-border-image: url(border.png) 30 round; /* Safari 3.1-5 */ -o-border-image: url(border.png) 30 round; /* Opera 11-12.1 */ border-image: url(border.png) 30 round; } </style> <p id="borderimg">Here, the middle sections of the image are repeated to create the border.</p> </body> </html> 

frame

#header-banner {
  height: 100%;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1502582877126-512f3c5b0a64?dpr=1&auto=format&fit=crop&w=1500&h=1001&q=80&cs=tinysrgb&crop=') center center no-repeat;
  background-size: cover;
  position: relative;

}

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