简体   繁体   中英

CSS doesn't load background pictures for <header>

Right now I'm working on an HTML5+CSS3 homework. I'd want to have a dynamic header image. So ot was awesom 'till the pont when I made it "dynamic".

Currently: There isn't any kind of header in my page. Plase help. :) Here the CSS:

header{
position:static;
margin: 0 auto;
background:url(img/desk_header.png);
background-repeat: no-repeat;}

Here is the HTML:

<header></header>

Setting width and height might help

header{
  position:static;
  margin: 0 auto;
  width: 100%;
  height: 50px;
  background:url(img/desk_header.png);
  background-repeat: no-repeat;
}

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