通过构建一组彩色标记来学习 CSS 颜色 - 步骤 18

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

你目前的代码

<!-- 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 one">
      </div>
      <div class="marker">
      </div>
      <div class="marker">
      </div>
    </div>
  </body>
</html>
/* file: styles.css */
h1 {
  text-align: center;
}

.marker {
  width: 200px;
  height: 25px;
  margin: 10px auto;
}
.marker one{
  background-color:red;
}

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 Edg/108.0.1462.54

挑战: 通过构建一组彩色标记来学习 CSS 颜色 - 步骤 18

挑战的链接:

根据题意,这里应该是 .one class,而不是 .marker one,改一下就能通过啦:)

根据题意,这里应该是.one而不是 .one class,改一下就能通过啦