为什么div元素上没有银色背景?

时间:2016-09-09 09:19:10

标签: html css

这是我的代码。

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css"> .red-text {
  color: red;
}
h2 {
  font-family: Lobster, Monospace;
}
p {
  font-size: 16px;
  font-family: Monospace;
}
.thick-green-border {
  border-color: green;
  border-width: 10px;
  border-style: solid;
  border-radius: 50%;
}
.smaller-image {
  width: 100px;
}
.silver-background {
  background-color: silver;
}
 <h2 class="red-text">CatPhotoApp</h2>
<p>Click here for <a href="#">cat photos</a>.</p>
<a href="#">
  <img class="smaller-image thick-green-border" alt="A cute orange cat lying on its back. " src="fcc-relaxing-cat">
</a>
<div class="silver-background">
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
</div>
<form action="/submit-cat-photo">
  <label>
    <input type="radio" name="indoor-outdoor" checked>Indoor</label>
  <label>
    <input type="radio" name="indoor-outdoor">Outdoor</label>
  <label>
    <input type="checkbox" name="personality" checked>Loving</label>
  <label>
    <input type="checkbox" name="personality">Lazy</label>
  <label>
    <input type="checkbox" name="personality">Energetic</label>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>

提交时会出现错误信息。
你的div元素应该有银色背景。

我的div元素已经在attatchment右侧的银色背景中 我刷新浏览器或重新启动电脑是没用的。 也许这是freecodecamp平台上的一个bug,我在html文本上找不到任何bug。 链接无法粘贴到此处,因此无法在运行代码时看到照片。 enter image description here

2 个答案:

答案 0 :(得分:0)

我重新启动进入我的win7,因为相同的html代码用chrome打开,错误信息消失。对不同浏览器的不同效果同样简单的html代码,也许它可以被称为freecodecamp平台上的bug。

答案 1 :(得分:-1)

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>


<script type="text/javascript">
    $(document).ready(function(){
    $("button").click(function(){
        $("div").addClass("silver-background");
    });
});

</script>


</head>

我已经使用了jquery。我添加了一个单击功能,在单击按钮时将一个类添加到div。只需将此添加到您的头部,它就可以正常工作。