此问题已经解决,无需回帖了~ 谢谢大家的关注

告诉我们发生了什么:
在此详细描述你的问题。
What went wrong? :face_with_spiral_eyes:

  **你目前的代码**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Colored Markers</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <h1>CSS Color Markers</h1>
  <div class="container">
    <div class="marker red">
    </div>
    <div class="marker green">
    </div>
    <div class="marker blue">
    </div>
  </div>
</body>
</html>
/* file: styles.css */
h1 {
text-align: center;
}

.container {
background-color: rgb(255, 255, 255);
padding: 10px 0;
}

.marker {
width: 200px;
height: 25px;
margin: 10px auto;
}

.red {
background:rgb(255, 0, 0);
}

.green {
background-color: #007F00;
}

.blue {
background-color: hsl(240, 100%, 50%);
}

挑战: 通过构建一组彩色标记来学习 CSS 颜色 - Step 49

挑战的链接:

没有发现问题,你可以尝试刷新页面情况缓存重新提交试试

重新试了,哈哈 不知道哪里问题 还是不行 :rofl:

是浏览器的问题,换个谷歌浏览器就好了 哈哈