CSS背景 - 图片无法显示?

时间:2015-10-27 21:54:28

标签: html css

我在尝试在CSS中显示背景图片时突然遇到了问题。

图像不可见!

我尝试将此背景图片专门用于页面上的某个位置,然后再向下滚动到另一个图像或背景。

任何人都可以对这种情况有所了解并可能提供正确的代码/解释我错误的原因吗?

提前致谢!

HTML:

    <!doctype html>
<html>
  <head>
    <link href='https://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
    <link rel='stylesheet' href='style.css'/>
  </head>
  <body>
    <div class="main">
      <div class="container">
        <h1>Move</h1>
        <p> Form healthy habits to take your fitness to the next level. </p>
        <a href="www.google.co.uk"> Start Now </a>
      </div>
    </div>

    <div class="supporting">
      <div class="container">
        <div class="col">
          <h2>Move</h2>
          <p>Become more active by tracking your runs, rides, and walks.</p>
        </div>


        <div class="clearfix"></div>
      </div>
    </div>


    <div class="feature">
      <div class="container">

      </div>
    </div>


  </body>
</html>

CSS:

html, body {
  margin: 0;
}

h1, h2, a {
  font-family: 'Oswald', sans-serif;
}

p {
  font-family: Helvetica, Arial, sans-serif; 
}

.container {
  width: 940px;
  margin: 0 auto;
}

/* Main */
.main {
  background-image: url ("https://yt3.ggpht.com/-QkqvzArFkYs/AAAAAAAAAAI/AAAAAAAAAAA/qw97foQDUbQ/s900-c-k-no/photo.jpg");
  height: 600px;
}

.main h1 {
  font-size: 150px;
  color: white;
  text-align: center;
}

.main p {
  font-size: 18px;
}


/* Supporting */
.supporting {
  text-align: center;
  padding: 50px 0 80px;
}

.supporting .col {
  float: left;
  width: 28%;
  padding: 10px;
}

.supporting h1,
.supporting h2 {
  color: #ffa800;
  font-size: 20px;
  margin-bottom: 10px;
}

.clearfix {
  clear: both;
}

.supporting p {
  color: #efefef;
  margin-bottom: 20px;
  line-height: 20px;
  font-size: 12px;
}

.supporting .btn {
  background-color: #eee;
  color: #1c1c1c;
  font-size: 18px;
  padding: 8px 30px;
  text-decoration: none;
  display: inline-block;
}

/* Feature */
.feature {
  height: 600px;
}

.feature h1,
.feature h2 {
  color: #fff;
  font-size: 40px;
  margin: 0;
  padding:50px 0 0;
}

/* Footer */
.footer {
  height: 600px;
}

.footer h1,
.footer h2 {
  color: #fff;
  font-size: 40px;
  margin: 0 0 20px 0;
  padding:50px 0 0;
}

.footer p {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 18px;
}


@media (min-width:600px) {
  .main h1 {
    font-size: 200px;
  }

  .supporting .col {
    width: 30%;
  }

  .supporting h2 {
    font-size: 40px;
  }

  .supporting p {
    font-size: 14px;
  }

  .feature h2 {
    font-size: 60px;
  }
}

3 个答案:

答案 0 :(得分:3)

删除CSS中url(之间的空格。

答案 1 :(得分:0)

在浏览器中复制粘贴网址,如果你可以看到它,那么可能会将div添加到div中的div和硬编码,尝试使用任何一种流行浏览器中的视图元素修改图像大小和样式。

然后为id创建css并再次尝试..即使我是Css的新手,但它始终有效..

或者替换HTTP而不是HTTP ..如果你没有证书,那么它可能不会显示..

答案 2 :(得分:0)

也许只是删除CSS中的空格?

background-image: url("https://yt3.ggpht.com/-QkqvzArFkYs/AAAAAAAAAAI/AAAAAAAAAAA/qw97foQDUbQ/s900-c-k-no/photo.jpg");