<div> 中的背景图像不显示

Background-image in <div> doesn't display

video id(#video)中的 background-image 未显示。我添加了 pure grid 样式。我已经尝试过使用标签的其他方法,但后来我还想在图像中间添加一个按钮。有没有办法使用 div 标签来显示我的背景图片?谢谢

HTML代码:

<div id="right_content">
              <div class="pure-g">
                  <div class="pure-u-10-24">
                      <h1 id="about">About</h1>
                      <p class="text chinese_paragraph"> 
                          (Some text)
                      </p>
                  </div>
                  <div class="pure-u-14-24 section2">
                      <div id="video">
                      </div>
                      <button>Watch</button>
                  </div>
              </div>
          </div>

CSS代码:

#right_content {
    background-color: #414141;
    position: fixed;
    right: 0;
    top: 0;
    width: 700px;
    height: 100%;
    box-sizing: border-box;
    padding: 30px 20px;
    overflow: auto;
}
.pure-g > div {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
#about {
    color: white;
    display: inline-block;
    position: relative;
    border-top: 2px solid white;
    vertical-align: middle;
    font-family: "Source Sans Pro","Yuanti SC",sans-serif;
    margin: 0;
    padding: 0;
}
p.text {
    color: white;
    font-family: "Source Sans Pro","Yuanti SC",sans-serif;
}
.pure-g .section2 {
    padding-top: 42px;
}
#video {
    background-image: url("../images/video.png");
    position: relative;
    width: 360px;
    height: 200px;
}

您应该可以显示视频中的图像div。首先尝试使用背景颜色,看看它是否有效,可能 link 图像不正确。并检查并确保视频 div 具有宽度和高度。

您的 #video div 没有大小,它的宽度和高度都是 0px。为您的 div 设置一个尺寸,它将解决问题。

#video {
    background-image: url("../images/video.png");
    position: relative;
    width: 240px;
    height: 100px;
}

Working example