没有显示在倒栽跳水的背景图象

时间:2015-05-06 02:51:25

标签: html css pug stylus

CSS背景图片未显示。继承我标题部分的手写笔文件:

.header {
  height 50vh
  border-bottom 5px solid #34495E
  background url(img/head.png) no-repeat center center fixed
  background-size cover
}
.nav {
  display flex
  align-items center
  justify-content flex-end
  padding 1em
  background rgba(0,0,0,0.5)
  position fixed
  top 0
  left 0
  width 100%
  z-index 5
}
.nav-item {
  list-style none
  display inline
  padding 1em
}
a {
  text-decoration none
  color #ececec
  transition 1s
  padding-right 1em
}
a:hover {
  color darken(#ececec, 25%)
  text-decoration underline
}
.space {
  content " "
  height 3.0625em
}

这就是它的样子: swe

这是作为标题背景的图像(其中包含Darcey Mckelvey的白色部分):

head

2 个答案:

答案 0 :(得分:2)

删除标题类的高度。

   .header {
   border-bottom: 5px solid #34495E;
   background: url('img/head.png') no-repeat center center fixed;
   background-size: cover;
   }

答案 1 :(得分:1)

您是否尝试在.header中添加宽度?说:

.header{
    width:100%
}