Home > database >  Background image not showing even though the path is correct
Background image not showing even though the path is correct

Time:09-04

My background image in html isn't showing
Code: enter image description here

CodePudding user response:

because you dont have any content in div #home so height div is as much as nav height for take look bg image need to manual set height

  • or
    fill content #home div so that to see bg
#home{
height:500px

}
  • Related